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/invalid-files/import-for-each.tf.json

15 lines
235 B

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