vsouza / docker-SQS-local

Docker image to run Amazon Simple Queue Service (Amazon SQS) locally.
MIT License
226 stars 32 forks source link

Uri, access key and secret key #13

Closed iberodev closed 5 years ago

iberodev commented 5 years ago

I cannot find any information on how to use this sqs local container. For instance I am using a c# wrapper library called MassTransit that supports Amazon SQS and in order to configure it I need to provide a server uri, an access key and a secret key.

Since this docker image is not really in AWS, how do I configure those 3 parameters so that I can connect my driver to it?

vsouza commented 5 years ago

Hi @iberodev usually AWS Wrappers have an endpoint_url option in the Connection object. Check this example using boto: https://stackoverflow.com/a/32260680