Add SSL protocol to apache_kafka component (#35281)

This commit is contained in:
Kuba Kaflik 2024-10-19 12:19:53 +02:00 committed by GitHub
parent 56df0c9e75
commit 7af6d1b574
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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