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.json

15 lines
238 B

{
"import": {
"for_each": "[\"a\", \"b\"]",
"to": "test_resource.test[each.value]",
"id": "${each.value}"
},
"resource": {
"test_resource": {
"test": {
"for_each": {"a":"a","b":"b"}
}
}
}
}