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

* Correct HCL field name for MuteTimeIntervals

* Update test
This commit is contained in:
William Wernert
2024-04-30 16:14:01 +01:00
committed by GitHub
parent 5e060d2d99
commit 93519f70ca
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"]
}
}
}