How would you configure a Kafka client to authenticate using SSL client certificates and also use SASL/PLAIN over SSL?
Asecurity.protocol=SSL
sasl.mechanism=PLAIN
ssl.keystore.location=/path/to/keystore.jks
Bsecurity.protocol=SASL_PLAINTEXT
sasl.mechanism=PLAIN
ssl.keystore.location=/path/to/keystore.jks
Csecurity.protocol=SASL_SSL
sasl.mechanism=PLAIN
ssl.keystore.location=/path/to/keystore.jks
ssl.keystore.password=keystorepass
sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username="user" password="pass";
Dsecurity.protocol=PLAINTEXT
sasl.mechanism=PLAIN