Files
opentf/terraform/testdata/plan-required-output/mod/main.tf
2019-06-30 10:16:15 +02:00

8 lines
117 B
HCL

resource "test_resource" "for_output" {
required = "val"
}
output "object" {
value = test_resource.for_output
}