From 7af6d1b5747b0bb96579e6bf42cdf3a9718e20de Mon Sep 17 00:00:00 2001 From: Kuba Kaflik Date: Sat, 19 Oct 2024 12:19:53 +0200 Subject: [PATCH] Add SSL protocol to apache_kafka component (#35281) --- source/_integrations/apache_kafka.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_integrations/apache_kafka.markdown b/source/_integrations/apache_kafka.markdown index e8bfe7eb58e..414750ec58e 100644 --- a/source/_integrations/apache_kafka.markdown +++ b/source/_integrations/apache_kafka.markdown @@ -37,15 +37,15 @@ port: required: true type: integer username: - description: The username of Apache Kafka cluster for authentication. + description: The username of Apache Kafka cluster for SASL authentication. Required with `SASL_SSL` security protocol only. required: false type: string password: - description: The password of Apache Kafka cluster for authentication. + description: The password of Apache Kafka cluster for SASL authentication. Required with `SASL_SSL` security protocol only. required: false type: string security_protocol: - description: The protocol used to communicate with brokers. Use `SASL_SSL` for authentication. + description: The security protocol used to communicate with brokers. Use `SSL` for secure or `SASL_SSL` for secure with SASL authentication. (only `SASL_PLAINTEXT` SASL mechanism is supported) required: false default: PLAINTEXT type: string