From 5627a975f8392420c1e5f87e7369e511c32485fe Mon Sep 17 00:00:00 2001 From: mj Date: Sat, 12 Oct 2024 11:20:11 +0900 Subject: [PATCH] refactor: storage module to remove unnecessary credentials case by aws_s3 --- backend/src/storage/storage.module.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/src/storage/storage.module.ts b/backend/src/storage/storage.module.ts index cb9dbfc7..78b7c48f 100644 --- a/backend/src/storage/storage.module.ts +++ b/backend/src/storage/storage.module.ts @@ -25,10 +25,6 @@ const s3ClientFactory = { } : { region, - credentials: { - accessKeyId, - secretAccessKey, - }, }; return new S3Client(config);