From b00c1efb432bab4db0774fb187ea1919291690c4 Mon Sep 17 00:00:00 2001 From: sannya-singal Date: Tue, 7 May 2024 09:02:41 +0530 Subject: [PATCH] change region to ap-northeast-1 --- localstack/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localstack/constants.py b/localstack/constants.py index becb502caa086..17a12410e1a6f 100644 --- a/localstack/constants.py +++ b/localstack/constants.py @@ -153,7 +153,7 @@ TEST_AWS_ACCOUNT_ID = os.getenv("TEST_AWS_ACCOUNT_ID") or "000000000001" TEST_AWS_ACCESS_KEY_ID = os.getenv("TEST_AWS_ACCESS_KEY_ID") or "000000000001" TEST_AWS_SECRET_ACCESS_KEY = os.getenv("TEST_AWS_SECRET_ACCESS_KEY") or "test1" -TEST_AWS_REGION_NAME = os.getenv("TEST_AWS_REGION") or "us-west-1" +TEST_AWS_REGION_NAME = os.getenv("TEST_AWS_REGION") or "ap-northeast-1" # Additional credentials used in the test suite (when running cross-account tests) SECONDARY_TEST_AWS_ACCOUNT_ID = os.getenv("SECONDARY_TEST_AWS_ACCOUNT_ID") or "000000000002"