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

Change-Id: Iebdb33dd18a8f8d18840ff3e5f4608f021a78bfa
2023-03-02 10:54:36 +09:00

21 lines
387 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,
}
}