Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3109b052d5eb21f6f26174390a9d5bf2756c6ec2 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
26 lines
668 B
Puppet
26 lines
668 B
Puppet
# == Class: magnum::certificates
|
|
#
|
|
# Manages the magnum certificate manager plugin
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*cert_manager_type*]
|
|
# (optional) Certificate Manager plugin.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*storage_path*]
|
|
# (optional) Absolute path of the certificate storage directory.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
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;
|
|
}
|
|
}
|