mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
12 lines
202 B
HCL
12 lines
202 B
HCL
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"]
|
|
}
|