-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Invalid AWS Mock Access Key ID through a new AWS-SDK version #299
Comments
Thanks for the PR! This issue is blocking our pipelines as well. Any ideas for a workaround in the meantime? |
@henriklippke -- I've published a fork to npm with your changes in. I haven't yet gotten a chance to try it (I'll do so later this morning in some of my other projects) Let me know if there's any issues. https://www.npmjs.com/package/@rahulp959/serverless-dynamodb-local |
As temp solution for me helped to inherit serverless-dynamodb-local plugin with local one and override dynamodbOptions method as per @henriklippke PR, and use this plugin in my project class ServerlessDynamodbLocalFix extends ServerlessDynamodbLocal { dynamodbOptions(options) { let dynamoOptions = {}; if (options && options.online) { ... } else { dynamoOptions = { endpoint: `http://${this.host}:${this.port}`, region: 'localhost', accessKeyId: 'MOCKACCESSKEYID', secretAccessKey: 'MOCKSECRETACCESSKEY', convertEmptyValues: options && options.convertEmptyValues ? options.convertEmptyValues : false, }; } return { raw: new AWS.DynamoDB(dynamoOptions), doc: new AWS.DynamoDB.DocumentClient(dynamoOptions), }; } } module.exports = ServerlessDynamodbLocalFix; |
Wrapping a jar file in a node module used by a plugin. What could possibly go wrong? |
Another option for a longer-term workaround with ongoing maintenace support committed: Why: Unfortunately this package ( Solution: You can use serverless-dynamodb, a maintained fork, instead. (Disclaimer: I am a contributor to this fork). It is a drop-in replacement for this package, and is updated to fix this bug. This is a drop-in replacement for
Of course, it's all still open-source and MIT licensed. Ownership of this new package sits with a registered charity, that is committed to maintaining the package into the future and is open to contributions from the community. In any case would be open to feedback on the fork - can drop create an issue in that repository or email me (address on profile). |
Due to a new AWS_SDK version only the following ACCESS KEY ID and SECRETS are allowed:
DynamoDB local version 2.0.0 and greater AWS_ACCESS_KEY_ID can contain the only letters (A–Z, a–z) and numbers (0–9).
Stackoverflow thread
I've already created a PR to fix this issue:
#298
The text was updated successfully, but these errors were encountered: