From d0576fd513c83345f78b3ec8b50ffc883c957c13 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 20 Jan 2026 10:28:17 -0800 Subject: [PATCH] fix static scan --- app/cloudfoundry_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cloudfoundry_config.py b/app/cloudfoundry_config.py index 86d3d4717..b64ae535b 100644 --- a/app/cloudfoundry_config.py +++ b/app/cloudfoundry_config.py @@ -9,8 +9,8 @@ class CloudfoundryConfig: self.s3_buckets = {bucket["name"]: bucket["credentials"] for bucket in buckets} self._empty_bucket_credentials = { "bucket": "", - "access_key_id": "", - "secret_access_key": "", + "access_key_id": "", # pragma: allowlist secret + "secret_access_key": "", # pragma: allowlist secret "region": "", }