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

8 lines
123 B
HCL

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