terraform/internal/configs/testdata/valid-files/resources.tf.json
2022-04-20 09:17:10 -04:00

18 lines
297 B
JSON

{
"resource": {
"test_object": {
"a": {
"count": 1,
"test_string": "new"
},
"b": {
"count": 1,
"lifecycle": {
"replace_triggered_by": [
"test_object.a[count.index].test_string"
]
}
}
}
}
}