mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
8af08d0df2
* add export of mute timings to file provisioning formats * support export of mute timings to HCL
21 lines
437 B
HCL
21 lines
437 B
HCL
resource "grafana_mute_timing" "mute_timing_1" {
|
|
name = "interval"
|
|
}
|
|
resource "grafana_mute_timing" "mute_timing_2" {
|
|
name = "full-interval"
|
|
|
|
intervals {
|
|
|
|
times {
|
|
start = "10:00"
|
|
end = "12:00"
|
|
}
|
|
|
|
weekdays = ["monday", "wednesday", "friday"]
|
|
days_of_month = ["1", "14:16", "20"]
|
|
months = ["1:3", "7", "12"]
|
|
years = ["2023:2025"]
|
|
location = "America/New_York"
|
|
}
|
|
}
|