github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/command/testdata/test/pass_with_outputs/main.tf (about)

     1  resource "test_resource" "foo" {
     2    value = "bar"
     3  }
     4  
     5  output "value" {
     6    value = test_resource.foo.value
     7  }