terraform/internal/command/testdata/dynamic-module-sources/command-with-const-var/main.tf
2026-03-30 20:51:48 +02:00

8 lines
121 B
HCL

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