-
Notifications
You must be signed in to change notification settings - Fork 20
feat(IamAssumeAuthenticator): introduce new authenticator type #227
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
Conversation
9cc61e0 to
5192fea
Compare
src/test/java/com/ibm/cloud/sdk/core/test/security/ConfigBasedAuthenticatorFactoryTest.java
Show resolved
Hide resolved
src/test/java/com/ibm/cloud/sdk/core/test/security/ConfigBasedAuthenticatorFactoryTest.java
Show resolved
Hide resolved
pyrooka
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Just one thing I'd like to mention: in the Authentication.md I found 4 typos - outside of you changes. It's the verificaton. If you think you can fix those in this PR, totally up to you. :)
This commit introduces the new IamAssumeAuthenticator which will fetch an IAM access token using the IAM getToken operation's "assume" grant type. The resulting access token allows the application to assume the identity of a trusted profile, similar to the "sudo" feature of Linux. Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
fixed |
dpopp07
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 👍
Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
|
Just pushed the commit with the immutable-related changes. I'll request a re-review... |
dpopp07
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New changes look good!
pyrooka
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
# [9.22.0](9.21.2...9.22.0) (2024-10-15) ### Features * **IamAssumeAuthenticator:** introduce new authenticator type ([#227](#227)) ([35abbf0](35abbf0))
|
🎉 This PR is included in version 9.22.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This commit introduces the new IamAssumeAuthenticator which will fetch an IAM access token using the IAM getToken operation's "assume" grant type. The resulting access token allows the application to assume the identity of a trusted profile, similar to the "sudo" feature of Linux.