Puppet Class: magnum::certificates

Defined in:
manifests/certificates.pp

Overview

Class: magnum::certificates

Manages the magnum certificate manager plugin

Parameters:

cert_manager_type

(optional) Certificate Manager plugin. Defaults to $facts

storage_path

(optional) Absolute path of the certificate storage directory. Defaults to $facts

Parameters:

  • cert_manager_type (Any) (defaults to: $facts['os_service_default'])
  • storage_path (Any) (defaults to: $facts['os_service_default'])


15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'manifests/certificates.pp', line 15

class magnum::certificates (
  $cert_manager_type = $facts['os_service_default'],
  $storage_path      = $facts['os_service_default'],
) {

  include magnum::deps

  magnum_config {
    'certificates/cert_manager_type': value => $cert_manager_type;
    'certificates/storage_path':      value => $storage_path;
  }

}