Skip to content

Commit 3cac66b

Browse files
authored
Update grafana.tf
1 parent 9abc7a7 commit 3cac66b

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

nap/grafana.tf

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
resource "helm_release" "grafana" {
2-
name = format("%s-gfa-%s", local.project_prefix, local.build_suffix)
3-
repository = "https://grafana.github.io/helm-charts"
4-
chart = "grafana"
5-
version = "6.50.7"
6-
namespace = kubernetes_namespace.monitoring.metadata[0].name
7-
#values = [templatefile("./charts/grafana/values.yaml", { external_name = "${data.kubernetes_service_v1.nginx-service.status.0.load_balancer.0.ingress.0.hostname}"})]
8-
values = [file("./charts/grafana/values.yaml")]
9-
}
2+
name = format("%s-gfa-%s", lower(local.project_prefix), lower(local.build_suffix))
3+
repository = "https://grafana.github.io/helm-charts"
4+
chart = "grafana"
5+
version = "6.50.7"
6+
namespace = kubernetes_namespace.monitoring.metadata[0].name
7+
values = [file("./charts/grafana/values.yaml")]
8+
}

0 commit comments

Comments
 (0)