pagerduty_event_orchestration

Use this data source to get information about a specific Global Event Orchestration

Example Usage

resource "pagerduty_event_orchestration" "tf_orch_a" {
  name = "Test Event Orchestration"
}

data "pagerduty_event_orchestration" "tf_my_monitor" {
  name = pagerduty_event_orchestration.tf_orch_a.name
}

resource "pagerduty_event_orchestration_router" "router" {
  parent {
    id = data.pagerduty_event_orchestration.tf_my_monitor.id
  }
  catch_all {
    actions {
      route_to = "unrouted"
    }
  }
  set {
    id = "start"
    rule {
      actions {
        route_to = pagerduty_service.db.id
      }
    }
  }
}

Argument Reference

The following arguments are supported:

Attributes Reference