terraform/internal/command/testdata/test/parallel_divided/setup/main.tf

12 lines
148 B
HCL

variable "input" {
type = string
}
resource "test_resource" "foo" {
value = var.input
}
output "value" {
value = test_resource.foo.value
}