Last active
April 8, 2025 20:55
-
-
Save mkanoor/da3f8bed9e4285998e86ea883f62fcfa to your computer and use it in GitHub Desktop.
Kafka TLS Credential
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 | |
| help_text: The Kafka Server | |
| - id: port | |
| type: string | |
| label: Port | |
| default: '9093' | |
| help_text: The Kafka Port Number | |
| - id: cafile | |
| type: string | |
| label: CA File | |
| help_text: The Certificate Authority Certificate file | |
| multiline: true | |
| - id: check_hostname | |
| type: boolean | |
| label: Check Hostname | |
| hidden: true | |
| default: true | |
| 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_REQUIRED | |
| help_text: Client certificate choices | |
| - id: topic | |
| type: string | |
| label: Topic | |
| help_text: The Kafka Topic to listen on | |
| default: demo | |
| - id: group_id | |
| type: string | |
| label: Group ID | |
| help_text: Consumer group ID, please use your email as a unique string. | |
| - 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: SSL | |
| help_text: Please select a security protocol from the list | |
| hidden: true | |
| - 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 | |
| hidden: true | |
| required: | |
| - host | |
| - port | |
| - topic | |
| - cafile | |
| - group_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment