535a0cd16a
These were deprecated in favor of the separate classes to customize
key manager, which were added during Xena cycle[1].
[1] e500bfe5e0
Change-Id: Iad3298e0b0cefd7049536820e21eb4ab69afec42
21 lines
401 B
Puppet
21 lines
401 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,
|
|
}
|
|
}
|