diff options
author | Ethan Lynn <xjunlin@cn.ibm.com> | 2014-11-13 12:46:39 +0800 |
---|---|---|
committer | Ethan Lynn <xjunlin@cn.ibm.com> | 2014-11-14 10:40:13 +0800 |
commit | 0307d0267713ed18309ecea5359f002d388eaf34 (patch) | |
tree | 2655629f62f55f8f115d1b62415f7953cae2691a /bin | |
parent | bf437d337255f8b4c1c8f5b3542eb1b11f508683 (diff) | |
download | heat-0307d0267713ed18309ecea5359f002d388eaf34.tar.gz |
Mark stack_domain_admin_password as a secret option
Add secret=True to option stack_domain_admin_password,
so that will avoid logging this option in engine.log.
Closes-Bug: #1392162
Change-Id: I04071f37a0053b969dc31a69e62ba9abb075c590
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/heat-keystone-setup-domain | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/heat-keystone-setup-domain b/bin/heat-keystone-setup-domain index cbef823ee..443865cb5 100755 --- a/bin/heat-keystone-setup-domain +++ b/bin/heat-keystone-setup-domain @@ -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, |