
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3c5704fa87db1cca7f0edd9396eacac6e70438f9 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
20 lines
400 B
Puppet
20 lines
400 B
Puppet
# == Class: nova::key_manager
|
|
#
|
|
# Setup and configure Key Manager options
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend*]
|
|
# (Optional) Specify the key manager implementation.
|
|
# Defaults to 'nova.keymgr.conf_key_mgr.ConfKeyManager'
|
|
#
|
|
class nova::key_manager (
|
|
$backend = 'nova.keymgr.conf_key_mgr.ConfKeyManager',
|
|
) {
|
|
include nova::deps
|
|
|
|
oslo::key_manager { 'nova_config':
|
|
backend => $backend,
|
|
}
|
|
}
|