terraform/internal/lang/globalref/testdata/assorted/child/assorted-child.tf

14 lines
140 B
HCL

variable "a" {
}
resource "test_thing" "foo" {
string = var.a
}
output "a" {
value = {
a = var.a
foo = test_thing.foo
}
}