-
Notifications
You must be signed in to change notification settings - Fork 1
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
add AWS plugin for AWS MSK's IAM access control #1
Conversation
} | ||
signedAt, err := time.Parse("20060102T150405Z", d) | ||
if err != nil { | ||
return false, fmt.Errorf("failed to parse the 'X-Amz-Date' param from signed url: %w", err) |
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.
Note
Unlike ExpiresQueryKey
, this string is not exposed.
Ref: aws/aws-msk-iam-sasl-signer-go#19
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.
👌
Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com>
4bcad31
to
a249228
Compare
@KeisukeYamashita thank you again for the PR. I added some smaller adjustments, but in general everything looked fine 💯 I will build a release for this, by the end of today hopefully. |
@d-rk Sorry for the late reply 🙏 Thank you very much for your review and the release 🚀 |
Description
Implemented a token provider plugin using IAM access control to enable access to MSK without static credentials such as passwords. With this implementation, users can execute
kafkactl
with IAM access control, eliminating the need to manage IDs and passwords.Previously, as described in the issue below, operators and administrators had to enable
SASL/SCRAM
authentication or perform cumbersome operations due tokafkactl
not supporting IAM access control for AWS MSK. This implementation simplifies the process and enhances security.Fixes deviceinsight/kafkactl#152
I would like to update the deviceinsight/kafkactl documentation after this plugin gets approved and released.
Type of change
Please delete options that are not relevant.
Documentation
## [Unreleased]
section of<plugin>/CHANGELOG.md
<plugin>/README.adoc
were updated