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 barbican. (string value) Defaults to ‘barbican’
11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/certificates.pp', line 11
class magnum::certificates (
$cert_manager_type = $facts['os_service_default'],
) {
include magnum::deps
magnum_config { 'certificates/cert_manager_type':
value => $cert_manager_type;
}
}
|