- 
                Notifications
    You must be signed in to change notification settings 
- Fork 887
Add support for AWS MSK IAM #513
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -23,6 +23,8 @@ | |
| <protobuf.version>3.22.3</protobuf.version> | ||
| <testcontainers.version>1.18.0</testcontainers.version> | ||
| <kafka-libs.version>7.3.3</kafka-libs.version> | ||
| <msk.auth.version>1.0.0</msk.auth.version> | ||
| <sts.sdk.version>1.11.704</sts.sdk.version> | ||
| </properties> | ||
|  | ||
| <scm> | ||
|  | @@ -76,6 +78,11 @@ | |
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>software.amazon.msk</groupId> | ||
| <artifactId>aws-msk-iam-auth</artifactId> | ||
| <version>${msk.auth.version}</version> | ||
| 
      Comment on lines
    
      +82
     to 
      +84
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @davideicardi What's your view on this? I'd rather not become dependent on Amazon JARs. The code doesn't need them, but the dependency exists when  I propose to resolve this by changing  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it seems to be a good idea to me. Loading extra classes could be a nice feature also for other cases. We just have to write a good documentation on this kind of stuff. | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.confluent</groupId> | ||
| <artifactId>kafka-avro-serializer</artifactId> | ||
|  | @@ -143,6 +150,12 @@ | |
| <groupId>org.springframework.kafka</groupId> | ||
| <artifactId>spring-kafka</artifactId> | ||
| </dependency> | ||
|  | ||
| <dependency> | ||
| <groupId>com.amazonaws</groupId> | ||
| <artifactId>aws-java-sdk-sts</artifactId> | ||
| <version>${sts.sdk.version}</version> | ||
| </dependency> | ||
| 
      Comment on lines
    
      +154
     to 
      +158
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment as above. | ||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-undertow</artifactId> | ||
|  | ||
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.
If next comment is accepted, this can be removed.