aws-elixir
aws-elixir copied to clipboard
AWS clients for Elixir
Currently the endpoint prefix is [hardcoded for mturk](https://github.com/jkakar/aws-elixir/blob/master/lib/aws/mechanical_turk.ex#L579): ``` host = get_host("mturk-requester", client) ... defp get_host(endpoint_prefix, client) do if client.region == "local" do "localhost" else "#{endpoint_prefix}.#{client.region}.#{client.endpoint}" end end ``` Since...
It would be great if the client would optionally pull credentials from EC2 instance metadata at the least, or optimally mimic the default credential provider chain: http://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html#using-the-default-credential-provider-chain
Just a heads up to anyone trying to use this library with temporary IAM credentials obtained within an EC2 instance or ECS container. The temporary security token must be included...
Was looking for an SQS module and couldn't find it. Any plans to add support for it?