github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/testdata/issue-9549/main.tf (about)

     1  module "mod" {
     2    source = "./mod"
     3  }
     4  
     5  output "out" {
     6    value = module.mod.base_config["base_template"]
     7  }
     8  
     9  resource "template_instance" "root_template" {
    10    foo = module.mod.base_config["base_template"]
    11  }