From 122343e46e48cc877704dac1d7f1bc7da3f7aee4 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 26 Sep 2024 09:37:07 -0700 Subject: [PATCH] try not using fips --- app/s3_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/s3_client/__init__.py b/app/s3_client/__init__.py index 7de3509d2..9a63ef0e7 100644 --- a/app/s3_client/__init__.py +++ b/app/s3_client/__init__.py @@ -12,7 +12,7 @@ AWS_CLIENT_CONFIG = Config( s3={ "addressing_style": "virtual", }, - use_fips_endpoint=True, + use_fips_endpoint=os.getenv("NOTIFY_ENVIRONMENT") in ['demo', 'production'], )