Repository URL to install this package:
Version:
4.2.29-4.2 ▾
|
# Copyright 2018 TrilioData Inc.
# All Rights Reserved.
from castellan import options as castellan_opts
from oslo_config import cfg
key_manager_group = cfg.OptGroup(
'key_manager',
title='Key manager options')
key_manager_opts = [
# TODO(raj_singh): Deprecate or move this option to The Castellan library
# NOTE(kfarr): The ability to use fixed_key should be deprecated and
# removed and Barbican should be tested in the gate instead
cfg.StrOpt(
'fixed_key',
deprecated_group='keymgr',
help="""
Fixed key returned by key manager, specified in hex.
Possible values:
* Empty string or a key in hex value
"""),
]
def register_opts(conf):
castellan_opts.set_defaults(conf)
conf.register_group(key_manager_group)
conf.register_opts(key_manager_opts, group=key_manager_group)
def list_opts():
# Castellan library also has a group name key_manager. So if
# we append list returned from Castellan to this list, oslo will remove
# one group as duplicate and only one group (either from this file or
# Castellan library) will show up. So fix is to merge options of same
# group name from this file and Castellan library
opts = {key_manager_group.name: key_manager_opts}
for group, options in castellan_opts.list_opts():
if group not in list(opts.keys()):
opts[group] = options
else:
opts[group] = opts[group] + options
return opts
# TODO(raj_singh): When the last option "fixed_key" is removed/moved from
# this file, then comment in code below and delete the code block above.
# Castellan already returned a list which can be returned
# directly from list_opts()
# return castellan_opts.list_opts()