You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/testdata/valid-files/import-for-each.tf

10 lines
159 B

import {
for_each = ["a", "b"]
to = test_resource.test[each.value]
id = each.value
}
resource "test_resource" "test" {
for_each = toset(["a", "b"])
}