
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>
23 lines
469 B
Puppet
23 lines
469 B
Puppet
#
|
|
# Configure Swift Keymaster middleware.
|
|
#
|
|
# == Examples
|
|
#
|
|
# include swift::proxy::keymaster
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*encryption_root_secret*]
|
|
# Encryption root secret value.
|
|
#
|
|
class swift::proxy::keymaster (
|
|
$encryption_root_secret,
|
|
) {
|
|
include swift::deps
|
|
|
|
swift_proxy_config {
|
|
'filter:keymaster/use': value => 'egg:swift#keymaster';
|
|
'filter:keymaster/encryption_root_secret': value => $encryption_root_secret, secret => true;
|
|
}
|
|
}
|