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

9 lines
149 B
HCL

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