Merge "Mark stack_domain_admin_password as a secret option"

This commit is contained in:
Jenkins 2014-11-14 17:24:34 +00:00 committed by Gerrit Code Review
commit 66d136bc45
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ opts = [
help="Keystone username with roles sufficient to manage users"
" and projects in the stack-user-domain"),
cfg.StrOpt('stack-domain-admin-password',
secret=True,
help="Password to set for stack-domain-admin"),
cfg.BoolOpt('insecure',
default=False,

View File

@ -71,6 +71,7 @@ service_opts = [
help=_('Keystone username, a user with roles sufficient to '
'manage users and projects in the stack_user_domain.')),
cfg.StrOpt('stack_domain_admin_password',
secret=True,
help=_('Keystone password for stack_domain_admin user.')),
cfg.IntOpt('max_template_size',
default=524288,