I need the properties ssl.truststore.password and ssl.keystore.password not to be written to the log
<SafedataJsonLayout charset="UTF-8" standName="${STAND_NAME}"/>
<Property name="bootstrap.servers">${KAFKA_SERVERS}</Property>
<Property name="security.protocol">SSL</Property>
<Property name="ssl.endpoint.identification.algorithm" />
<Property name="ssl.truststore.location">${SSL_TRUSTSTORE}</Property>
<Property name="ssl.truststore.password">${env:INTERNAL_KAFKA_TS_PASSWORD}</Property>
<Property name="ssl.keystore.location">${SSL_KEYSTORE}</Property>
<Property name="ssl.keystore.password">${env:INTERNAL_KAFKA_KS_PASSWORD}</Property>
I tried to change “name” to “password” but it didn t help me
New contributor
Трофим Майданов is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.