Last active
July 5, 2022 08:06
-
-
Save lbroudoux/aa5831aa70fe5f4b290843511ff81408 to your computer and use it in GitHub Desktop.
Quarkus Kafka producer - consumer scram-sha authentication #quarkus #kafka
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kafka configuration properties for SCRAM-SHA-512 authentication and TLS transport. | |
kafka.bootstrap.servers=scram-cluster-kafka-bootstrap-kafka-test.apps.kubernetes.acme.com:443 | |
kafka.ssl.truststore.location=/Users/lbroudou/Development/kafka-test/scram-cluster-ca.p12 | |
kafka.ssl.truststore.password=LoUk0HtOd8tD | |
kafka.ssl.truststore.type=PKCS12 | |
kafka.security.protocol=SASL_SSL | |
kafka.sasl.mechanism=SCRAM-SHA-512 | |
kafka.sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="scram-user" password="tDtDCT3pYKE5"; | |
mp.messaging.incoming.microcks-services-updates.bootstrap.servers=scram-cluster-kafka-bootstrap-kafka-test.apps.kubernetes.acme.com:443 | |
mp.messaging.incoming.microcks-services-updates.ssl.truststore.location=/Users/lbroudou/Development/kafka-test/scram-cluster-ca.p12 | |
mp.messaging.incoming.microcks-services-updates.ssl.truststore.password=LoUk0HtOd8tD | |
mp.messaging.incoming.microcks-services-updates.ssl.truststore.type=PKCS12 | |
mp.messaging.incoming.microcks-services-updates.security.protocol=SASL_SSL | |
mp.messaging.incoming.microcks-services-updates.sasl.mechanism=SCRAM-SHA-512 | |
mp.messaging.incoming.microcks-services-updates.sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="scram-user" password="tDtDCT3pYKE5"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment