github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/configs/testdata/valid-modules/with-tests-expect-failures/main.tf (about) 1 2 variable "input" { 3 type = string 4 } 5 6 7 resource "foo_resource" "a" { 8 value = var.input 9 } 10 11 output "output" { 12 value = foo_resource.a.value 13 }