github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/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  }