mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-22 05:01:22 -05:00
* Add test structure to views package for rendering test output * Add test file HCL configuration and parser functionality * address comments
12 lines
124 B
HCL
12 lines
124 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
|
|
resource "foo_resource" "a" {
|
|
value = var.input
|
|
}
|
|
|
|
resource "bar_resource" "c" {}
|