You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+1 I have an implementation for this that uses AWSCredentialsProvider to replace the user name and password pair. This is necessary because the instance profile credentials changes regularly. Currently my code did it via reflection, but native support will be helpful.
Similar to #74 we use an alternate method for providing AWS credentials to our application. Per AWS best practices, we use IAM roles to provide automatic rotation of the credential keys autoatmaically (http://docs.aws.amazon.com/AWSSdkDocsJava/latest/DeveloperGuide/java-dg-roles.html).
We are currently using the AWSCredentialsProviderChain with values similar to https://github.com/aws/aws-sdk-java/blob/master/src/main/java/com/amazonaws/services/s3/AmazonS3Client.java#L294
By abstracting out the actual credentials creation into a factory, it would allow a lot of customization and custom credentials schemes.
The text was updated successfully, but these errors were encountered: