aboutsummaryrefslogtreecommitdiff
path: root/terraform/hash-prometheus/prometheus.tf
diff options
context:
space:
mode:
Diffstat (limited to 'terraform/hash-prometheus/prometheus.tf')
-rw-r--r--terraform/hash-prometheus/prometheus.tf10
1 files changed, 10 insertions, 0 deletions
diff --git a/terraform/hash-prometheus/prometheus.tf b/terraform/hash-prometheus/prometheus.tf
index 4c77ce8..09df3ee 100644
--- a/terraform/hash-prometheus/prometheus.tf
+++ b/terraform/hash-prometheus/prometheus.tf
@@ -19,6 +19,15 @@ resource "docker_container" "prometheus" {
env = [
]
+ command = [
+#"/bin/prometheus",
+ "--config.file=/etc/prometheus/prometheus.yml",
+ "--storage.tsdb.path=/prometheus",
+ "--web.console.libraries=/usr/share/prometheus/console_libraries",
+ "--web.console.templates=/usr/share/prometheus/consoles",
+ "--storage.tsdb.retention.time=100y",
+ ]
+
networks_advanced {
name = data.docker_network.dn42.name
}
@@ -45,6 +54,7 @@ resource "docker_container" "prometheus" {
source = local.path
target = "/etc/prometheus"
type = "bind"
+ read_only = false
}
volumes {