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

10 lines
180 B
HCL

variable "module_name" {
type = string
const = true
}
module "example" {
source = "./modules/${var.module_name}"
for_each = toset(["a", "b"])
letter = each.value
}