github.com/opentofu/opentofu@v1.7.1/internal/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 }