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/actions.tf.json

28 lines
555 B

{
"action": {
"test_action": {
"a": {}
}
},
"resource": {
"test_object": {
"a": {
"count": 1,
"test_string": "new"
},
"b": {
"count": 1,
"lifecycle": {
"replace_triggered_by": [
"test_object.a[count.index].test_string"
],
"action_trigger": {
"events": ["before_create"],
"actions": ["action.test_action.a"]
}
}
}
}
}
}