d1c198ced9
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
21 lines
383 B
Puppet
21 lines
383 B
Puppet
# == Class: cinder::key_manager
|
|
#
|
|
# Setup and configure Key Manager options
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend*]
|
|
# (Optional) Specify the key manager implementation.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class cinder::key_manager (
|
|
$backend = $facts['os_service_default'],
|
|
) {
|
|
|
|
include cinder::deps
|
|
|
|
oslo::key_manager { 'cinder_config':
|
|
backend => $backend,
|
|
}
|
|
}
|