summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/monitoring.pp
blob: cafa70514dd55cbfa2e18fedbb9e9f2e0a05daff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class tozt::monitoring {
  include tick::client::base_plugins

  tick::client::plugin { "postgresql":
    opts => {
      address => "user=postgres",
    }
  }

  class {
    [
      "tick::client::plugin::certbot",
      "tick::client::plugin::fail2ban",
    ]:
  }
}