Skip to content

Commit

Permalink
Update grafana.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
akananth authored Feb 12, 2025
1 parent 9abc7a7 commit 3cac66b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions nap/grafana.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
resource "helm_release" "grafana" {
name = format("%s-gfa-%s", local.project_prefix, local.build_suffix)
repository = "https://grafana.github.io/helm-charts"
chart = "grafana"
version = "6.50.7"
namespace = kubernetes_namespace.monitoring.metadata[0].name
#values = [templatefile("./charts/grafana/values.yaml", { external_name = "${data.kubernetes_service_v1.nginx-service.status.0.load_balancer.0.ingress.0.hostname}"})]
values = [file("./charts/grafana/values.yaml")]
}
name = format("%s-gfa-%s", lower(local.project_prefix), lower(local.build_suffix))
repository = "https://grafana.github.io/helm-charts"
chart = "grafana"
version = "6.50.7"
namespace = kubernetes_namespace.monitoring.metadata[0].name
values = [file("./charts/grafana/values.yaml")]
}

0 comments on commit 3cac66b

Please sign in to comment.