From 570b6579352eaef0744b7e7df0f9a936fb57f5af Mon Sep 17 00:00:00 2001 From: Henrik Lippke Date: Sat, 1 Jul 2023 10:50:32 +0200 Subject: [PATCH] Invalid AWS Mock Access Key ID through a new AWS-SDK version --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index d29a9e3..cb811a7 100644 --- a/index.js +++ b/index.js @@ -190,8 +190,8 @@ class ServerlessDynamodbLocal { dynamoOptions = { endpoint: `http://${this.host}:${this.port}`, region: "localhost", - accessKeyId: "MOCK_ACCESS_KEY_ID", - secretAccessKey: "MOCK_SECRET_ACCESS_KEY", + accessKeyId: "MOCKACCESSKEYID", + secretAccessKey: "MOCKSECRETACCESSKEY", convertEmptyValues: options && options.convertEmptyValues ? options.convertEmptyValues : false, }; }