Skip to content

Commit

Permalink
Restored the updated profile help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemac007 committed Dec 21, 2017
1 parent 3f215a5 commit fb2fe7e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aws_google_auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,11 @@ def parse_args(args):
parser.add_argument('-d', '--duration', type=int, default=DURATION,
help='Credential duration ($DURATION)')
parser.add_argument('-p', '--profile', default=PROFILE,
help='AWS profile ($AWS_PROFILE)')
help='AWS profile (defaults to value of $AWS_PROFILE, then falls back to \'sts\')')

role_group = parser.add_mutually_exclusive_group()
role_group.add_argument('-a', '--ask-role', default=ASK_ROLE,
action='store_true', help='Set true to always pick the role')
action='store_true', help='Set true to always pick the role')
role_group.add_argument('-r', '--role-arn', help='The ARN of the role to assume')
parser.add_argument('-V', '--version', action='version',
version='%(prog)s {version}'.format(version=_version.__version__))
Expand Down

0 comments on commit fb2fe7e

Please sign in to comment.