Mark functional tests passwords as secrets

Just in case these values are being logged somewhere.

Change-Id: I6126b5b362dd2b89292d348ae58639d087d5a63b
This commit is contained in:
Vladyslav Drok 2018-04-25 17:22:05 +03:00
parent a0a833fb56
commit 66ef564036
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@ auth_opts = [
cfg.StrOpt("tenant_name",
help="The non-administrative user's tenant name."),
cfg.StrOpt("password",
secret=True,
help="The non-administrative user's password."),
cfg.StrOpt("auth_url",
help="URL for where to find the OpenStack Identity public "
@ -57,6 +58,7 @@ auth_opts = [
cfg.StrOpt("admin_tenant_name",
help="The administrative user's tenant name."),
cfg.StrOpt("admin_password",
secret=True,
help="The administrative user's password."),
cfg.StrOpt("admin_auth_url",
help="URL for where to find the OpenStack Identity admin "