mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
* Grafana Cloud migration, adding dashboards, fleet, alloy and synthetics * modulize stuff now that we have multiple substantial things in here * provider updates and new secrets * remove grafana and prometheus from ansible
16 lines
499 B
HCL
16 lines
499 B
HCL
resource "grafana_dashboard" "energy" {
|
|
config_json = file("${path.module}/dashboards/energy.json")
|
|
}
|
|
|
|
resource "grafana_dashboard" "grafana_cloud_usage" {
|
|
config_json = file("${path.module}/dashboards/grafana_cloud_usage.json")
|
|
}
|
|
|
|
resource "grafana_dashboard" "living_room_display" {
|
|
config_json = file("${path.module}/dashboards/living_room_display.json")
|
|
}
|
|
|
|
resource "grafana_dashboard" "traffic_slo" {
|
|
org_id = 0
|
|
config_json = file("${path.module}/dashboards/traffic_slo.json")
|
|
}
|