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
Hi! I'm trying to connect to MSK using the Confluent Kafka Connect image. I would like to use MSK's IAM authentication feature during this process, but I'm not sure if this is supported by Confluent Connect.
The reason I'm asking is that the connection works fine when I set MSK's encryption method to PLAINTEXT. However, I encountered errors when using the properties mentioned above with MSK. Below is the MSK log I found on CloudWatch:
Failed authentication with /INTERNAL_IP (channelId=INTERNAL_IP-INTERNAL_IP-10293) (SSL handshake failed)
I'm wondering if the Confluent Connect image does not support the AWS_MSK_IAM protocol. Any insights?
The text was updated successfully, but these errors were encountered:
Then inside your Dockerfile, copy it to the right place. I have this code:
COPY --from=downloader /tmp/extracted/config-providers/*.jar /usr/share/java/cp-base-new/
# Looks like AWS IAM Auth *also* needs to be placed directly in the classpath in order for the startup checks to work
# This was gleaned from /etc/confluent/docker/launch within the base image and via https://github.com/confluentinc/kafka-images/issues/186
COPY --from=downloader /tmp/extracted/config-providers/aws-msk-iam-auth*.jar /etc/kafka-connect/jars/
Everything else worked fine after that and I was able to use Kafka Connect against MSK with IAM auth purely based on config properties as you describe
Hi! I'm trying to connect to MSK using the Confluent Kafka Connect image. I would like to use MSK's IAM authentication feature during this process, but I'm not sure if this is supported by Confluent Connect.
I'm planning to use the following properties:
The reason I'm asking is that the connection works fine when I set MSK's encryption method to PLAINTEXT. However, I encountered errors when using the properties mentioned above with MSK. Below is the MSK log I found on CloudWatch:
I'm wondering if the Confluent Connect image does not support the AWS_MSK_IAM protocol. Any insights?
The text was updated successfully, but these errors were encountered: