github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/command/testdata/show-json-state/modules/main.tf (about)

     1  module "module_test_foo" {
     2    source   = "./foo"
     3    test_var = "baz"
     4  }
     5  
     6  module "module_test_bar" {
     7    source = "./bar"
     8  }
     9  
    10  output "test" {
    11    value      = module.module_test_foo.test
    12    depends_on = [module.module_test_foo]
    13  }