Skip to content

Commit

Permalink
Merge pull request #298 from henriklippke/hotfix/invalid-aws-mock-acc…
Browse files Browse the repository at this point in the history
…ess-key-id

Invalid AWS Mock Access Key ID through a new AWS-SDK version
  • Loading branch information
AshanFernando authored Jul 4, 2023
2 parents 0d44cc7 + 570b657 commit 0a39b19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
}
Expand Down

0 comments on commit 0a39b19

Please sign in to comment.