I want to do something like this
resource "newrelic_workflow" "workflow-example" {
name = "workflow-example"
muting_rules_handling = "NOTIFY_ALL_ISSUES"
issues_filter {
name = "Filter-name"
type = "FILTER"
predicate {
attribute = "accumulations.conditionFamilyId"
operator = "EXACTLY_MATCHES"
values = [ newrelic_nrql_alert_condition.number_1.id ]
}
predicate {
attribute = "accumulations.conditionFamilyId"
operator = "EXACTLY_MATCHES"
values = [ newrelic_nrql_alert_condition.number_2.id ]
}
}
destination {
channel_id = var.alert_channel_id
}
}
To terraform this manually created workflow
The question is: How to terraform the AND bool condition?