terraform/internal/command/testdata/test/expect-failures-assertions/child/main.tf

12 lines
159 B
HCL

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