You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform v1.7.4
on darwin_arm64
+ provider registry.terraform.io/opsgenie/opsgenie v0.6.35
Affected Resource(s)
opsgenie_escalation
Terraform Configuration Files
resource"opsgenie_team""this" {
name="Test Team Terraform"ignore_members=truedelete_default_resources=true
}
resource"opsgenie_schedule""this" {
name="Test Team Terraform Schedule"owner_team_id=opsgenie_team.this.id
}
resource"opsgenie_escalation""this" {
name="Test Team Terraform Escalation"owner_team_id=opsgenie_team.this.idrules {
condition="if-not-acked"notify_type="default"delay=1recipient {
type="schedule"id=opsgenie_schedule.this.id
}
}
repeat {
wait_interval=1count=3reset_recipient_states=falseclose_alert_after_all=false
}
}
Expected Behavior
After removing the repeat block and doing an apply, the repeat is removed from the escalation.
Actual Behavior
The apply succeeds but when checking the escalation policy in the Opsgenie webui it still has the repeat.
Running another apply shows the same change again.
Steps to Reproduce
Create an escalation policy with a repeat block
Apply
Remove the repeat block from the escalation policy
Apply
Review the escalation policy in the Opsgenie webui, it still has the repeat
Apply
The plan shows the same change
The text was updated successfully, but these errors were encountered:
Terraform Version
Affected Resource(s)
Terraform Configuration Files
Expected Behavior
After removing the repeat block and doing an apply, the repeat is removed from the escalation.
Actual Behavior
The apply succeeds but when checking the escalation policy in the Opsgenie webui it still has the repeat.
Running another apply shows the same change again.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: