summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/prometheus.pp
blob: f0454f115f4ef433fc936b4c03fd9fbb606c0dbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class tozt::prometheus {
  include prometheus

  nginx::site {
    "prometheus-tls":
      source => 'puppet:///modules/tozt/nginx/prometheus-tls.conf',
      require => Class['certbot'];
    "prometheus":
      source => 'puppet:///modules/tozt/nginx/prometheus.conf';
  }
}