8000 [DEBUG] Use non default account and region · localstack/localstack@67b0b57 · GitHub
[go: up one dir, main page]

Skip to content

Commit 67b0b57

Browse files
[DEBUG] Use non default account and region
TO BE REVERTED BEFORE MERGE
1 parent df2ba1a commit 67b0b57

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 DEFAULT_AWS_ACCOUNT_ID
157-
TEST_AWS_ACCESS_KEY_ID = os.getenv("TEST_AWS_ACCESS_KEY_ID") or "test"
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"
158158
TEST_AWS_SECRET_ACCESS_KEY = os.getenv("TEST_AWS_SECRET_ACCESS_KEY") or "test"
159-
TEST_AWS_REGION_NAME = "us-east-1"
159+
TEST_AWS_REGION_NAME = "us-west-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