This is an automated email from the ASF dual-hosted git repository.
lfrolov pushed a commit to branch DATALAB-2410
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
The following commit(s) were added to refs/heads/DATALAB-2410 by this push:
new a3e2a41 [DATALAB-2410]: changed output
a3e2a41 is described below
commit a3e2a4188c9076275fb6ba3137aa229e274f7476
Author: leonidfrolov <[email protected]>
AuthorDate: Thu Jun 10 17:14:39 2021 +0300
[DATALAB-2410]: changed output
---
infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
b/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
index 7544473..dca22a2 100644
--- a/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
+++ b/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
@@ -1067,14 +1067,14 @@ def init_args():
print('==========2')
print(parser.parse_known_args()[1])
args = parser.parse_known_args()[0]
- for key, value in args.__dict__:
+ for key in args.__dict__:
if key in ["secret_access_key", "keycloak_auth_server_url",
"keycloak_realm_name", "keycloak_user_name",
"keycloak_user_password", "keycloak_client_id",
"keycloak_client_secret","access_key_id",
"ldap_host", "ldap_user", "ldap_bind_creds",
"mongo_password", "mongo_host", "mongo_port",
"repository_address", "repository_port", "repository_user",
"repository_pass",
"step_root_ca", "step_kid", "step_kid_password"]:
- value = '********'
- print(key+"="+value)
+ args.__dict__[key] = '********'
+ print(key+"="+args.__dict__[key])
def update_system():
conn.sudo('apt-get update')
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]