opentofu/internal/command/testdata/import-non-existent-key/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

7 lines
101 B
HCL

locals {
items = toset(["a", "b"])
}
resource "test_instance" "this" {
for_each = local.items
}