summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/prometheus.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-07-03 23:26:51 -0400
committerJesse Luehrs <doy@tozt.net>2021-07-03 23:26:51 -0400
commit573a37010fac2c1ff893257be19a1f2842ce11e1 (patch)
treedf1f1d66fabac35d676e2f53968bb1a9335eaa5f /modules/tozt/manifests/prometheus.pp
parentaed0b7eed874716c0f1930a6b4a175b7e976749a (diff)
downloadpuppet-tozt-573a37010fac2c1ff893257be19a1f2842ce11e1.tar.gz
puppet-tozt-573a37010fac2c1ff893257be19a1f2842ce11e1.zip
use basic auth for grafana
Diffstat (limited to 'modules/tozt/manifests/prometheus.pp')
-rw-r--r--modules/tozt/manifests/prometheus.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/tozt/manifests/prometheus.pp b/modules/tozt/manifests/prometheus.pp
index 05ad53c..84ead88 100644
--- a/modules/tozt/manifests/prometheus.pp
+++ b/modules/tozt/manifests/prometheus.pp
@@ -54,4 +54,13 @@ class tozt::prometheus {
"grafana":
source => 'puppet:///modules/tozt/nginx/grafana.conf';
}
+
+ secret { "/media/persistent/grafana.htpasswd":
+ source => "grafana",
+ owner => 'http',
+ require => [
+ Class["tozt::persistent"],
+ Package['nginx'],
+ ];
+ }
}