I have a Kafka source and I want to write some custom configuration beyond what standard Kafka streaming UI offers. Specifically I would like to override some of the “standard” SSL configurations to allow for custom certificate and truststore setups that our team uses. Is there a way to edit these settings, beyond what the UI offers?
Nope the options in the UI are pretty much the only options that the connector supports. That being said the keystore and trustore should be configurable. The docs for the connector show how to configure mutual ssl. Did you go through that?
Yup! We just had some issues with trying to set custom certificates with an unmanaged agent. Switching to a managed agent and then using importing certificates via the standard method in the UI worked. thanks!