Quite a bit
All checks were successful
/ non-lab (push) Successful in 5m20s

This commit is contained in:
Chris Cowley 2025-04-01 08:01:18 +00:00
parent d908078ee6
commit ca415c6959
15 changed files with 10601 additions and 64 deletions

View file

@ -18,3 +18,12 @@ resource "grafana_dashboard" "Kubernetes" {
config_json = file("${path.module}/dashboards/kubernetes/${each.key}")
folder = grafana_folder.Kubernetes.id
}
resource "grafana_folder" "pinchflat" {
title = "Pinchflat"
}
resource "grafana_dashboard" "pinchflat" {
for_each = fileset("${path.module}/dashboards/pinchflat", "*.json")
config_json = file("${path.module}/dashboards/pinchflat/${each.key}")
folder = grafana_folder.pinchflat.id
}