github.com/opentofu/opentofu@v1.7.1/internal/lang/globalref/testdata/assorted/child/assorted-child.tf (about)

     1  variable "a" {
     2  }
     3  
     4  resource "test_thing" "foo" {
     5    string = var.a
     6  }
     7  
     8  output "a" {
     9    value = {
    10      a   = var.a
    11      foo = test_thing.foo
    12    }
    13  }