opentofu/terraform/testdata/issue-9549/main.tf

12 lines
202 B
Terraform
Raw Normal View History

module "mod" {
source = "./mod"
}
output "out" {
value = module.mod.base_config["base_template"]
}
resource "template_instance" "root_template" {
foo = module.mod.base_config["base_template"]
}