You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
387 B
21 lines
387 B
# == 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,
|
|
}
|
|
}
|