terraform/internal/command/testdata/dynamic-module-sources/nested-module-with-variable-source/main.tf
2026-03-04 11:45:59 +01:00

9 lines
143 B
HCL

variable "child_name" {
type = string
const = true
}
module "parent" {
source = "./modules/parent"
child_name = var.child_name
}