Merge "vault: Hide values used for authentication"

This commit is contained in:
Zuul 2024-06-12 15:57:26 +00:00 committed by Gerrit Code Review
commit a01bb73d5f

View File

@ -44,10 +44,13 @@ _DEFAULT_VERSION = 2
_vault_opts = [
cfg.StrOpt('root_token_id',
secret=True,
help='root token for vault'),
cfg.StrOpt('approle_role_id',
secret=True,
help='AppRole role_id for authentication with vault'),
cfg.StrOpt('approle_secret_id',
secret=True,
help='AppRole secret_id for authentication with vault'),
cfg.StrOpt('kv_mountpoint',
default=_DEFAULT_MOUNTPOINT,