Created
October 18, 2021 08:33
-
-
Save lbroudoux/e25b142e02caad913bcd01af63dd2ca6 to your computer and use it in GitHub Desktop.
SpringBoot Kafka producer mtls authentication #spring #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 TLS authentication and TLS transport. | |
spring.kafka.producer.bootstrap-servers=mtls-cluster-kafka-bootstrap-kafka-test.apps.kubernetes.acme.com:443 | |
spring.kafka.producer.properties.ssl.truststore.location=/Users/lbroudou/Development/kafka-test/mtls-cluster-ca.p12 | |
spring.kafka.producer.properties.ssl.truststore.password=sHgN5VLVJCzU | |
spring.kafka.producer.properties.ssl.truststore.type=PKCS12 | |
spring.kafka.producer.properties.ssl.keystore.location=/Users/lbroudou/Development/kafka-test/mtls-user.p12 | |
spring.kafka.producer.properties.ssl.keystore.password=timpMsibd2rl | |
spring.kafka.producer.properties.ssl.keystore.type=PKCS12 | |
spring.kafka.producer.properties.security.protocol=SSL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment