Use this data source to get information as a list about specific Global Event Orchestrations filtered by a Regular Expression provided.
resource "pagerduty_event_orchestration" "tf_orch_a" {
name = "Test Event A Orchestration"
}
resource "pagerduty_event_orchestration" "tf_orch_b" {
name = "Test Event B Orchestration"
}
data "pagerduty_event_orchestrations" "tf_my_monitor" {
name_filter = ".*Orchestration$"
}
The following arguments are supported:
name_filter
- (Required) The regex name of Global Event orchestrations to find in the PagerDuty API.name_filter
- The list of the Event Orchestrations which name match name_filter
argument.
id
- The ID of the found Event Orchestration.name
- The name of the found Event Orchestration.integration
- An integration for the Event Orchestration.id
- ID of the integrationparameters
routing_key
- Routing key that routes to this Orchestration.type
- Type of the routing key. global
is the default type.