Skip to content

Commit 993701d

Browse files
committed
requested changes
1 parent 8589749 commit 993701d

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

bin/mas-devops-create-initial-users-for-saas

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# *****************************************************************************
4-
# Copyright (c) 2024 IBM Corporation and other Contributors.
4+
# Copyright (c) 2025 IBM Corporation and other Contributors.
55
#
66
# All rights reserved. This program and the accompanying materials
77
# are made available under the terms of the Eclipse Public License v1.0
@@ -31,8 +31,6 @@ if __name__ == "__main__":
3131
parser = argparse.ArgumentParser()
3232

3333
# Primary Options
34-
parser.add_argument("--mas-account-id", required=False) # TODO: remove if unused
35-
parser.add_argument("--mas-cluster-id", required=False) # TODO: remove if unused
3634
parser.add_argument("--mas-instance-id", required=True)
3735
parser.add_argument("--mas-workspace-id", required=True)
3836
parser.add_argument("--log-level", required=False, choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], default="INFO")
@@ -60,8 +58,6 @@ if __name__ == "__main__":
6058
ch.setFormatter(chFormatter)
6159
logger.addHandler(ch)
6260

63-
mas_account_id = args.mas_account_id
64-
mas_cluster_id = args.mas_cluster_id
6561
mas_instance_id = args.mas_instance_id
6662
mas_workspace_id = args.mas_workspace_id
6763
initial_users_yaml_file = args.initial_users_yaml_file
@@ -73,8 +69,6 @@ if __name__ == "__main__":
7369

7470
logger.info("Configuration:")
7571
logger.info("--------------")
76-
logger.info(f"mas_account_id: {mas_account_id}")
77-
logger.info(f"mas_cluster_id: {mas_cluster_id}")
7872
logger.info(f"mas_instance_id: {mas_instance_id}")
7973
logger.info(f"mas_workspace_id: {mas_workspace_id}")
8074
logger.info(f"initial_users_yaml_file: {initial_users_yaml_file}")

0 commit comments

Comments
 (0)