Puppet Class: icinga::ca

Defined in:
manifests/ca.pp

Summary

Configures the Icinga 2 CA and the api feature.

Overview



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

class icinga::ca (
) {
  assert_private()

  include icinga2::pki::ca

  class { 'icinga2::feature::api':
    pki             => 'none',
    accept_commands => true,
  }
}