mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
13 lines
229 B
HCL
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
|
|
}
|
|
}
|
|
}
|