Last active
March 6, 2026 22:33
-
-
Save mkanoor/56d78d9fb3e6fad433996ff4a2f8d500 to your computer and use it in GitHub Desktop.
Kafka Server Side TLS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: host | |
| type: string | |
| label: Host | |
| default: localhost | |
| - id: port | |
| type: string | |
| label: Port | |
| default: '9092' | |
| help_text: The Kafka Port Number | |
| - id: cafile | |
| type: string | |
| label: The CA File | |
| help_text: The Certificate Authority Certificate file | |
| multiline: true | |
| - id: check_hostname | |
| type: boolean | |
| label: Check Hostname | |
| hidden: true | |
| default: false | |
| help_text: Validate the hostname in the servers certificate | |
| - id: verify_mode | |
| type: string | |
| label: Verify Mode | |
| hidden: true | |
| choices: | |
| - CERT_NONE | |
| - CERT_OPTIONAL | |
| - CERT_REQUIRED | |
| default: CERT_NONE | |
| help_text: Client certificate choices | |
| - id: topic | |
| type: string | |
| label: Topic | |
| help_text: The Kafka Topic to listen on | |
| - id: group_id | |
| type: string | |
| label: Group ID | |
| help_text: Consumer group ID | |
| - id: offset | |
| type: string | |
| label: Reading offset | |
| choices: | |
| - earliest | |
| - latest | |
| default: latest | |
| help_text: Please select a security protocol from the list | |
| - id: security_protocol | |
| type: string | |
| label: Security Protocol | |
| choices: | |
| - PLAINTEXT | |
| - SSL | |
| - SASL_PLAINTEXT | |
| - SASL_SSL | |
| default: PLAINTEXT | |
| help_text: Please select a security protocol from the list | |
| - id: sasl_mechanism | |
| type: string | |
| label: SASL Mechanism | |
| choices: | |
| - PLAIN | |
| - GSSAPI | |
| - SCRAM-SHA-256 | |
| - SCRAM-SHA-512 | |
| - OAUTHBEARER | |
| default: PLAIN | |
| help_text: Please select a SASL mechanism from the list | |
| - id: sasl_plain_username | |
| type: string | |
| label: SASL Username | |
| help_text: The SASL username | |
| - id: sasl_plain_password | |
| type: string | |
| label: SASL Password | |
| help_text: The SASL password | |
| secret: true | |
| required: | |
| - host | |
| - port | |
| - topic | |
| - cafile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment