How can I use it with AWS SDK 2.x ?
See original GitHub issueHello,
I’m using aws-secretsmanager-jdbc 1.06 with springboot 2.3.4 and gradle:
implementation 'com.amazonaws.secretsmanager:aws-secretsmanager-jdbc:1.0.6'
It works for me locally, on my development PC, and I’m able to connect to Aurora Postgres with a secret coming from SecertsManager.
But I noticed that it loads by default java-sdk-core:1.11.418 and java-sdk-secretsmanager:1.11.418
I need to implement the same in EKS environment and assume IAM role for service account. However, per AWS documentation, the minimal SDK version required is 2.10.11 https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-minimum-sdk.html
Any plan to support SDK 2.X dependency? I saw that the underlying dependency aws-secretsmanager-caching-java has an opened PR on that: https://github.com/aws/aws-secretsmanager-caching-java/pull/6
Regards, Ori.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:10 (2 by maintainers)
@willtong1234 , note PR #51 - why not simply merge it?
I added PR #51 .