puppet-cinder/manifests/key_manager.pp
Takashi Kajinami d1c198ced9 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
2023-03-01 16:57:02 +09:00

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,
}
}