[v11.0.x] Alerting: Also fix HCL field name for MuteTimeIntervals (#87143)

Alerting: Also fix HCL field name for MuteTimeIntervals (#87079)

* Correct HCL field name for MuteTimeIntervals

* Update test

(cherry picked from commit 93519f70ca)

Co-authored-by: William Wernert <william.wernert@grafana.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-05-06 10:22:24 -04:00
committed by GitHub
co-authored by William Wernert
parent 9ad215f6df
commit d71892990e
3 changed files with 20 additions and 18 deletions
@@ -79,12 +79,12 @@ resource "grafana_rule_group" "rule_group_0000" {
is_paused = false
notification_settings {
contact_point = "Test-Receiver"
group_by = ["alertname", "grafana_folder", "test"]
group_wait = "1s"
group_interval = "5s"
repeat_interval = "5m"
mute_time_intervals = ["test-mute"]
contact_point = "Test-Receiver"
group_by = ["alertname", "grafana_folder", "test"]
group_wait = "1s"
group_interval = "5s"
repeat_interval = "5m"
mute_timings = ["test-mute"]
}
}
}