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

8 lines
112 B
HCL

variable "child_name" {
type = string
const = true
}
module "child" {
source = "../${var.child_name}"
}