Hi,
How would Lagom be configured for consumers/producers to connect to an external Kafka server using TLS?
A CLI consumer example using TLS would set these properties:
kafka-console-consumer –bootstrap-server kafka.tls.com:9093 –topic foo –new-consumer –from-beginning –consumer.config /etc/kafka/consumer_ssl.properties
consumer_ssl.properties
security.protocol=SSL
ssl.truststore.location=/etc/security/tls/kafka.client.truststore.jks
ssl.truststore.password=test1234
ssl.keystore.location=/etc/security/tls/kafka.client.keystore.jks
ssl.keystore.password=test1234
ssl.key.password=test1234
Where would I put these properties so Lagom would configure the Kafka consumer/producer to use TLS?
Thanks,
Dustin