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 e8125cc [DATALAB-2410]: changed output
e8125cc is described below
commit e8125cc84f6fb4bc500e3f9307824085743a7f31
Author: leonidfrolov <[email protected]>
AuthorDate: Thu Jun 10 17:21:02 2021 +0300
[DATALAB-2410]: changed output
---
infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
b/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
index dca22a2..8982a34 100644
--- a/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
+++ b/infrastructure-provisioning/terraform/bin/deploy/endpoint_fab.py
@@ -1067,14 +1067,17 @@ def init_args():
print('==========2')
print(parser.parse_known_args()[1])
args = parser.parse_known_args()[0]
+ args_list = list()
for key in args.__dict__:
+ value = args.__dict__[key]
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"]:
- args.__dict__[key] = '********'
- print(key+"="+args.__dict__[key])
+ value = '********'
+ args_list.append("{0}='{1}'".format(key, value))
+ print(args_list)
def update_system():
conn.sudo('apt-get update')
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]