Skip to content

Commit 699b107

Browse files
committed
Add eusc partition option for ec2 accounts
1 parent 0461c78 commit 699b107

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

man/man1/mash-account-ec2-add.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Group name to associate the account with.
2020
Name for the account to create. [required]
2121
.TP
2222
\fB\-\-partition\fP [aws|aws\-cn|aws\-us\-gov]
23-
The location of the EC2 account. ["aws", "aws-cn", "aws-us-gov"] [required]
23+
The location of the EC2 account. ["aws", "aws-cn", "aws-us-gov", "aws-eusc"] [required]
2424
.TP
2525
\fB\-\-region\fP TEXT
2626
The target region for image upload and testing. [required]

mash_client/cli/account/ec2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def ec2():
6464
'--partition',
6565
type=click.Choice(EC2_PARTITIONS),
6666
required=True,
67-
help='The location of the EC2 account. ["aws", "aws-cn", "aws-us-gov"]'
67+
help='The location of the EC2 account. ["aws", "aws-cn", "aws-us-gov", "aws-eusc"]'
6868
)
6969
@click.option(
7070
'--region',

mash_client/cli_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
'no_color': False,
4949
'verify': True
5050
}
51-
EC2_PARTITIONS = ('aws', 'aws-cn', 'aws-us-gov')
51+
EC2_PARTITIONS = ('aws', 'aws-cn', 'aws-us-gov', 'aws-eusc')
5252

5353

5454
def echo_dict(data, no_color):

0 commit comments

Comments
 (0)