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