Skip to content

Commit a052a27

Browse files
authored
Update prometheus.tf
1 parent 8bfaaa9 commit a052a27

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

nic/prometheus.tf

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
resource "helm_release" "prometheus" {
2-
name = format("%s-pro-%s", local.project_prefix, local.build_suffix)
3-
repository = "https://prometheus-community.github.io/helm-charts"
4-
chart = "prometheus"
5-
#version = "15.10.2"
6-
namespace = kubernetes_namespace.monitoring.metadata[0].name
7-
values = [file("./charts/prometheus/values.yaml")]
8-
}
2+
name = format("%s-pro-%s", lower(local.project_prefix), lower(local.build_suffix))
3+
repository = "https://prometheus-community.github.io/helm-charts"
4+
chart = "prometheus"
5+
namespace = kubernetes_namespace.monitoring.metadata[0].name
6+
values = [file("./charts/prometheus/values.yaml")]
7+
}

0 commit comments

Comments
 (0)