Puppet Class: magnum::certificates
- Defined in:
- manifests/certificates.pp
Overview
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;
}
}
|