diff --git a/lib/imageRouter/s3.js b/lib/imageRouter/s3.js index 427c3d51..0d6be44e 100644 --- a/lib/imageRouter/s3.js +++ b/lib/imageRouter/s3.js @@ -9,7 +9,16 @@ const logger = require('../logger') const { S3Client } = require('@aws-sdk/client-s3-node/S3Client') const { PutObjectCommand } = require('@aws-sdk/client-s3-node/commands/PutObjectCommand') -const s3 = new S3Client(config.s3) +const credentials = { + accessKeyId: config.s3.accessKeyId, + secretAccessKey: config.s3.secretAccessKey +} + +const s3 = new S3Client({ + credentials, + region: config.s3.region, + endpoint: config.s3.endpoint +}) exports.uploadImage = function (imagePath, callback) { if (!imagePath || typeof imagePath !== 'string') {