From 959a6806644ad1d8d2f1b746d3c8866915bee3ee Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 26 Sep 2024 10:13:19 -0700 Subject: [PATCH] try specifying region in the config --- app/s3_client/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/s3_client/__init__.py b/app/s3_client/__init__.py index 9a63ef0e7..97c886ffe 100644 --- a/app/s3_client/__init__.py +++ b/app/s3_client/__init__.py @@ -13,6 +13,7 @@ AWS_CLIENT_CONFIG = Config( "addressing_style": "virtual", }, use_fips_endpoint=os.getenv("NOTIFY_ENVIRONMENT") in ['demo', 'production'], + region_name="us-gov-west-1", )