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

4 lines
93 B
HCL

module "example" {
for_each = toset(["one", "two"])
source = "./modules/${each.key}"
}