Puppet Class: profile::certspotter

Defined in:
modules/profile/manifests/certspotter.pp

Overview

Parameters:

  • alert_email (String) (defaults to: lookup('profile::certspotter::alert_email'))
  • monitor_domains (Array[Stdlib::Fqdn]) (defaults to: lookup('profile::certspotter::monitor_domains'))


6
7
8
9
10
11
12
13
14
15
16
# File 'modules/profile/manifests/certspotter.pp', line 6

class profile::certspotter (
    String              $alert_email     = lookup('profile::certspotter::alert_email'),
    Array[Stdlib::Fqdn] $monitor_domains = lookup('profile::certspotter::monitor_domains'),
) {

    class { 'certspotter':
        alert_email     => $alert_email,
        monitor_domains => $monitor_domains,
    }

}