Skip to content

Commit

Permalink
fix: remove selecting default profile
Browse files Browse the repository at this point in the history
  • Loading branch information
snigdhasjg committed Oct 3, 2023
1 parent 77068fb commit dda81b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- "main"
paths:
- "aws-console/**"
- "aws_console/**"
- "setup.py"

concurrency: tagging
Expand Down
2 changes: 1 addition & 1 deletion aws_console/input_output/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __arg_parser():
parser = argparse.ArgumentParser(
description="Open the AWS console in your web browser, using your AWS CLI credentials")

parser.add_argument('-P', '--profile', default=os.getenv("AWS_PROFILE", "joe-user"),
parser.add_argument('-P', '--profile', default=os.getenv("AWS_PROFILE"),
help="The AWS profile to create the pre-signed URL with")
parser.add_argument('-R', '--region', default=os.getenv("AWS_REGION", os.getenv("AWS_DEFAULT_REGION")),
help="The AWS Region to send the request to")
Expand Down

0 comments on commit dda81b4

Please sign in to comment.