Files
puppet-swift/manifests/proxy/kms_keymaster.pp
Takashi Kajinami 73d0dbfb0a Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: Ifb5b50d7ae23c3e69a70721598e2719dbafa14d5
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 07:01:23 +00:00

23 lines
540 B
Puppet

#
# Configure Swift KMS Keymaster middleware.
#
# == Examples
#
# include swift::proxy::kms_keymaster
#
# == Parameters
#
# [*keymaster_config_path*]
# Sets the path from which the keymaster config options should be read
#
class swift::proxy::kms_keymaster (
$keymaster_config_path = '/etc/swift/keymaster.conf'
) {
include swift::deps
swift_proxy_config {
'filter:kms_keymaster/use': value => 'egg:swift#kms_keymaster';
'filter:kms_keymaster/keymaster_config_path': value => $keymaster_config_path;
}
}