taoensso / faraday

Amazon DynamoDB client for Clojure
https://www.taoensso.com/faraday
Eclipse Public License 1.0
238 stars 84 forks source link

Connect without explicit key/secret client-opts? #66

Closed skbach closed 9 years ago

skbach commented 9 years ago

Is it possible to overload get/query etc so that they use the IAM environment rather than explicit user/password combinations.

I know the SQS api for example has overloads that don't require credentials and therefore defaults to IAM roles, so I'm wondering if the underlying Dynamo api and/or faraday are capable of doing this.

Currently I have to put the password directly into the shell scripts environment in order to connect.

Thanks.

ptaoussanis commented 9 years ago

Hi Scott, you'll want to check the db-client* source (here)[https://github.com/ptaoussanis/faraday/blob/master/src/taoensso/faraday.clj#L88] to see in detail exactly what connection types Faraday supports.

Does that help?

skbach commented 9 years ago

Thanks Peter!