-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support use of IAM Roles #40
Comments
We have support for IAM Roles through an environment variable called |
Yes I saw that it in the code. My case is bit different, I have some nodes running outside of AWS they do have AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY configured, but this is not enough. To obtain correct credentials the client first has to create STSAssumeRoleSessionCredentialsProvider using configured role ARN. And then pass this new credential provider to the constructor of AmazonS3Client |
Ah sorry, I missed the STS part in the first comment. That's something we don't support today. It should be easy to add though. Would you be interested in taking a stab at it? I guess we can get the |
Possibly, I am super busy these days. So if anybody else wants to take a stab at this they are more than welcome to do so. I will try to find some time next month for this otherwise. |
Some organizations require use of IAM roles and temp credentials.
It would be nice if this plugin supported it. Here is more info:
http://docs.aws.amazon.com/java-sdk/latest/developer-guide/prog-services-sts.html
The text was updated successfully, but these errors were encountered: