8000 revert non default account and region · localstack/localstack@670df14 · GitHub
[go: up one dir, main page]

Skip to content

Commit 670df14

Browse files
committed
revert non default account and region
1 parent 90fd710 commit 670df14
< EA46 /div>

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

localstack/constants.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@
153153
# Credentials used in the test suite
154154
# These can be overridden if the tests are being run against AWS
155155
# If a structured access key ID is used, it must correspond to the account ID
156-
TEST_AWS_ACCOUNT_ID = os.getenv("TEST_AWS_ACCOUNT_ID") or "000000000001"
157-
TEST_AWS_ACCESS_KEY_ID = os.getenv("TEST_AWS_ACCESS_KEY_ID") or "000000000001"
156+
TEST_AWS_ACCOUNT_ID = os.getenv("TEST_AWS_ACCOUNT_ID") or DEFAULT_AWS_ACCOUNT_ID
157+
TEST_AWS_ACCESS_KEY_ID = os.getenv("TEST_AWS_ACCESS_KEY_ID") or "test"
158158
TEST_AWS_SECRET_ACCESS_KEY = os.getenv("TEST_AWS_SECRET_ACCESS_KEY") or "test"
159-
TEST_AWS_REGION_NAME = os.getenv("TEST_AWS_REGION") or "us-west-1"
159+
TEST_AWS_REGION_NAME = os.getenv("TEST_AWS_REGION") or "us-east-1"
160160

161161
# Additional credentials used in the test suite (when running cross-account tests)
162162
SECONDARY_TEST_AWS_ACCOUNT_ID = os.getenv("SECONDARY_TEST_AWS_ACCOUNT_ID") or "000000000002"

0 commit comments

Comments
 (0)
0