Added secret flag to oslo config params

Change-Id: I79faeec3ec72747686a899eea097cac7919ce0cc
This commit is contained in:
Robert Clark 2015-10-30 13:54:30 +09:00
parent 4fb0ec415d
commit a78328e7d5
4 changed files with 8 additions and 4 deletions

View File

@ -30,7 +30,8 @@ p11_crypto_plugin_opts = [
cfg.StrOpt('library_path',
help=u._('Path to vendor PKCS11 library')),
cfg.StrOpt('login',
help=u._('Password to login to PKCS11 session')),
help=u._('Password to login to PKCS11 session'),
secret=True),
cfg.StrOpt('mkek_label',
help=u._('Master KEK label (used in the HSM)')),
cfg.IntOpt('mkek_length',

View File

@ -63,7 +63,8 @@ dogtag_plugin_opts = [
cfg.StrOpt('nss_db_path',
help=u._('Path to the NSS certificate database')),
cfg.StrOpt('nss_password',
help=u._('Password for the NSS certificate databases')),
help=u._('Password for the NSS certificate databases'),
secret=True),
cfg.StrOpt('simple_cmc_profile',
help=u._('Profile for simple CMC requests')),
cfg.StrOpt('auto_approved_profiles',

View File

@ -49,7 +49,8 @@ kmip_opts = [
),
cfg.StrOpt('password',
default=None,
help=u._('Password for authenticating with KMIP server')
help=u._('Password for authenticating with KMIP server'),
secret=True,
),
cfg.StrOpt('host',
default='localhost',

View File

@ -34,7 +34,8 @@ symantec_plugin_opts = [
cfg.StrOpt('username',
help=u._('Symantec username for authentication')),
cfg.StrOpt('password',
help=u._('Symantec password for authentication')),
help=u._('Symantec password for authentication'),
secret=True),
cfg.StrOpt('url',
help=u._('Domain of Symantec API'))
]