Creates a custom type AWS Cost Explorer anomaly monitor with specific tag filters.

Terraform Template

resource "aws_ce_anomaly_monitor" "test" {
  monitor_specification = jsonencode({
 And = null
 CostCategories = null
 Dimensions = null
 Not = null
 Or = null

 Tags = {
 Key = "CostCenter"
 MatchOptions = null
 Values = [
 "10000"
 ]
 }
 })
  monitor_type = "CUSTOM"
  name = "AWSCustomAnomalyMonitor"
}