Reputation: 603
I am learning DynamoDB. I had installed DynamoDB local copy in my computer. Is it possible to perform operations like create-table on DynamoDB with out having aws credentials?
Upvotes: 4
Views: 3608
Reputation: 8254
If you are using DynamoDB local you don't need any credentials, just put any string as Access Key and Secret Key.
Only thing you need to make sure is that all your code listen to the local port, by default it will listen on 8000
Here is the link on how to set up your local environment.
Upvotes: 8