Skip to content

Commit

Permalink
try delay for rules on escalation
Browse files Browse the repository at this point in the history
  • Loading branch information
Benbentwo committed Jul 25, 2024
1 parent e4f0e52 commit d3fdc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/escalation/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "opsgenie_escalation" "this" {
content {
condition = try(rules.value.condition, "if-not-acked")
notify_type = try(rules.value.notify_type, "default")
delay = rules.value.delay
delay = try(rules.value.delay, 0)

recipient {
type = rules.value.recipient.type
Expand Down

0 comments on commit d3fdc3b

Please sign in to comment.