pez-infra/terraform/pagerduty/escalation_policies.tf
Rasmus "Pez" Wejlgaard 9bde71fbf9
Some checks are pending
Terraform / Plan (push) Waiting to run
Terraform / Apply (push) Blocked by required conditions
adding pagerduty stack (#95)
* adding pagerduty stack

* rename files to not be overly descriptive
2026-05-04 20:50:31 +01:00

13 lines
229 B
HCL

resource "pagerduty_escalation_policy" "default" {
name = "Default"
num_loops = 2
rule {
escalation_delay_in_minutes = 10
target {
type = "user_reference"
id = pagerduty_user.pez.id
}
}
}