opentofu/internal/command/testdata/import-keyed-module/main.tf
Ilia Gogotchuri 2c68afe753
CLI import target validation for incorrect for_each keys (#3106)
Signed-off-by: Ilia Gogotchuri <ilia.gogotchuri0@gmail.com>
2025-09-02 13:21:19 +04:00

10 lines
124 B
HCL

locals {
items = toset(["a", "b"])
}
module "child" {
source = "./child"
for_each = local.items
id = each.key
}