You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: website/docs/r/event_orchestration_global.html.markdown
+3
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,9 @@ The following arguments are supported:
113
113
*`suspend` - (Optional) The number of seconds to suspend the resulting alert before triggering. This effectively pauses incident notifications. If a `resolve` event arrives before the alert triggers then PagerDuty won't create an incident for this alert.
114
114
*`priority` - (Optional) The ID of the priority you want to set on resulting incident. Consider using the [`pagerduty_priority`](https://registry.terraform.io/providers/PagerDuty/pagerduty/latest/docs/data-sources/priority) data source.
115
115
*`annotate` - (Optional) Add this text as a note on the resulting incident.
116
+
*`incident_custom_field_update` - (Optional) Assign a custom field to the resulting incident.
117
+
*`id` - (Required) The custom field id
118
+
*`value` - (Required) The value to assign to this custom field
116
119
*`automation_action` - (Optional) Create a [Webhook](https://support.pagerduty.com/docs/event-orchestration#webhooks) associated with the resulting incident.
117
120
*`name` - (Required) Name of this Webhook.
118
121
*`url` - (Required) The API endpoint where PagerDuty's servers will send the webhook request.
annotate = "Please use our P1 runbook: https://docs.test/p1-runbook"
101
112
priority = data.pagerduty_priority.p1.id
113
+
incident_custom_field_update {
114
+
id = pagerduty_incident_custom_field.cs_impact.id
115
+
value = "High Impact"
116
+
}
102
117
}
103
118
}
104
119
rule {
@@ -170,6 +185,9 @@ The following arguments are supported:
170
185
*`suspend` - (Optional) The number of seconds to suspend the resulting alert before triggering. This effectively pauses incident notifications. If a `resolve` event arrives before the alert triggers then PagerDuty won't create an incident for this alert.
171
186
*`priority` - (Optional) The ID of the priority you want to set on resulting incident. Consider using the [`pagerduty_priority`](https://registry.terraform.io/providers/PagerDuty/pagerduty/latest/docs/data-sources/priority) data source.
172
187
*`annotate` - (Optional) Add this text as a note on the resulting incident.
188
+
*`incident_custom_field_update` - (Optional) Assign a custom field to the resulting incident.
189
+
*`id` - (Required) The custom field id
190
+
*`value` - (Required) The value to assign to this custom field
173
191
*`pagerduty_automation_action` - (Optional) Configure a [Process Automation](https://support.pagerduty.com/docs/event-orchestration#process-automation) associated with the resulting incident.
174
192
*`action_id` - (Required) Id of the Process Automation action to be triggered.
175
193
*`automation_action` - (Optional) Create a [Webhook](https://support.pagerduty.com/docs/event-orchestration#webhooks) associated with the resulting incident.
0 commit comments