Created
March 27, 2026 16:57
-
-
Save mkanoor/1129b3d93e6e1f54b5c5109215a5b9de to your computer and use it in GitHub Desktop.
Kafka_with_avro
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 | |
| - id: avro_schema_file | |
| type: string | |
| label: The Avro Schema File | |
| help_text: Please provide an Avro Schema file | |
| multiline: true | |
| required: | |
| - host | |
| - port | |
| - topic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment