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
# module.opsgenie_integration.opsgenie_integration_action.create_alert will be updated in-place
~ resource "opsgenie_integration_action" "create_alert" {
id = "xxx"
# (1 unchanged attribute hidden)
~ create {
name = "Create alert"
tags = []
# (17 unchanged attributes hidden)
~ filter {
# (1 unchanged attribute hidden)
- conditions {
- expected_value = "xxx" -> null
- field = "extra-properties" -> null
- key = "context" -> null
- not = false -> null
- operation = "equals" -> null
- order = 0 -> null
}
+ conditions {
+ expected_value = "xxx"
+ field = "extra_properties_key_prefix-context"
+ not = false
+ operation = "equals"
}
}
# (1 unchanged block hidden)
}
}```
### Expected Behavior
After applying this plan and re-running plan on the same code, it should show no changes.
### Actual Behavior
After applying this plan and re-running plan on the same code, the same change is shown.
### Steps to Reproduce
1. `terraform apply`
2. `terraform plan`
### Note
This is what terraform state has
"conditions": [
{
"expected_value": "xxx",
"field": "extra_properties_key_prefix-context",
"key": "",
"not": false,
"operation": "equals",
"order": null
}
The text was updated successfully, but these errors were encountered:
Possibly related to #322
Terraform Version
Terraform v1.4.4
Affected Resource(s)
opsgenie_integration_action
Terraform Configuration Files
Terraform Plan
The text was updated successfully, but these errors were encountered: