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
There's currently a bug in the way that the aws_ce_anomaly_monitor resource is created with a jsonencode() that is causing monitor_specification.Tags.MatchOptions to trigger a replacement every apply due to the default in the aws api changing null to MatchOptions = null on resource creation.
Proposed Resolution:
Add MatchOptions = null to explicitly prevent replacement case from triggering
Fix MatchOptions from triggering replacement
Problem Description:
There's currently a bug in the way that the
aws_ce_anomaly_monitor
resource is created with ajsonencode()
that is causingmonitor_specification.Tags.MatchOptions
to trigger a replacement every apply due to the default in the aws api changingnull
toMatchOptions = null
on resource creation.Proposed Resolution:
Add
MatchOptions = null
to explicitly prevent replacement case from triggeringterraform-aws-cost-anomaly-monitor/main.tf
Lines 28 to 31 in 34d1db3
The text was updated successfully, but these errors were encountered: