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-modules/override-action-and-trigger/main.tf

16 lines
288 B

action "test_action" "test" {
foo = "bar"
}
action "test_action" "unchanged" {
foo = "bar"
}
resource "test_instance" "test" {
lifecycle {
action_trigger {
events = [after_create, after_update]
actions = [action.test_action.dosomething]
}
}
}