You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Creates a csv file containing AWS accounts to be used for 'update-stack --csv-file' command option.",
52
74
)
53
75
@click.argument("csv-file")
54
-
defgenerate_csv(csv_file: str):
76
+
@click.option(
77
+
"--include-accounts-file",
78
+
required=False,
79
+
type=str,
80
+
help="CSV file containing accounts that will be the only ones included. Each row should consists of 2 fields: first is the account name and second is the environment as they appear on Conformity Dashboard. An empty file means the tool won't include any account.",
81
+
)
82
+
@click.option(
83
+
"--exclude-accounts-file",
84
+
required=False,
85
+
type=str,
86
+
help="CSV file containing accounts that will be excluded. Each row should consists of 2 fields: first is the account name and second is the environment as they appear on Conformity Dashboard.",
help="Cross-Account Role name (e.g. OrganizationAccountAccessRole). The role should at least have the permissions necessary to update the Conformity stack.",
179
216
)
217
+
@click.option(
218
+
"--include-accounts-file",
219
+
required=False,
220
+
type=str,
221
+
help="CSV file containing accounts that will be the only ones included. Each row should consists of 2 fields: first is the account name and second is the environment as they appear on Conformity Dashboard. An empty file means the tool won't include any account.",
222
+
)
223
+
@click.option(
224
+
"--exclude-accounts-file",
225
+
required=False,
226
+
type=str,
227
+
help="CSV file containing accounts that will be excluded. Each row should consists of 2 fields: first is the account name and second is the environment as they appear on Conformity Dashboard.",
0 commit comments