@@ -100,6 +100,7 @@ def copy_client_configuration_properties(src: Dict[str, Any], dst: Dict[str, Any
100100 "enable.ssl.certificate.verification" ,
101101 "ssl.certificate.location" , "ssl.certificate.pem" ,
102102 "ssl.ca.location" , "ssl.ca.pem" ,
103+ "ssl.key.location" ,
103104 "ssl.ca.certificate.stores" , "ssl.crl.location" ,
104105 "ssl.providers" , "ssl.context" ,
105106 "ssl.cafile" , "ssl.certfile" , "ssl.keyfile" ,
@@ -269,6 +270,16 @@ def copy_client_configuration_properties(src: Dict[str, Any], dst: Dict[str, Any
269270 "batch.num.messages" : "batch.num.messages" ,
270271 "compression.codec" : "compression.codec" ,
271272 "oauth_cb" : "oauth_cb" ,
273+
274+ # SSL properties (confluent uses Java-style names directly)
275+ "ssl.ca.location" : "ssl.ca.location" ,
276+ "ssl.certificate.location" : "ssl.certificate.location" ,
277+ "ssl.key.location" : "ssl.key.location" ,
278+ "ssl.keystore.location" : "ssl.keystore.location" ,
279+ "ssl.keystore.password" : "ssl.keystore.password" ,
280+ "ssl.key.password" : "ssl.key.password" ,
281+ "ssl.endpoint.identification.algorithm" : "ssl.endpoint.identification.algorithm" ,
282+ "enable.ssl.certificate.verification" : "enable.ssl.certificate.verification" ,
272283 }
273284}
274285
0 commit comments