github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/command/testdata/test/with_nested_setup_modules/setup/main.tf (about) 1 2 variable "value" { 3 type = string 4 } 5 6 module "child" { 7 source = "./other" 8 9 value = var.value 10 } 11 12 output "value" { 13 value = module.child.value 14 }