Skip to content

Commit

Permalink
use proper default values ("test") for test credentials (localstack#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenkov authored Mar 20, 2021
1 parent 6069fb4 commit 9c76658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/awslocal
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ def prepare_environment():
env_dict['AWS_DEFAULT_REGION'] = os.environ.get(
'AWS_DEFAULT_REGION', 'us-east-1')
env_dict['AWS_ACCESS_KEY_ID'] = os.environ.get(
'AWS_ACCESS_KEY_ID', '_not_needed_locally_')
'AWS_ACCESS_KEY_ID', 'test')
env_dict['AWS_SECRET_ACCESS_KEY'] = os.environ.get(
'AWS_SECRET_ACCESS_KEY', '_not_needed_locally_')
'AWS_SECRET_ACCESS_KEY', 'test')

# update environment variables in the current process
os.environ.update(env_dict)
Expand Down

0 comments on commit 9c76658

Please sign in to comment.