terraform/internal/command/testdata/test/dynamic_source_nested/main.tf

9 lines
143 B
HCL

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