From 3f64575311d6dac82995a5c09ad7a4be2142a367 Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Thu, 14 Nov 2019 14:01:42 -0800 Subject: [PATCH] Update kafka.md (#250) --- concepts/bindings/specs/kafka.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/concepts/bindings/specs/kafka.md b/concepts/bindings/specs/kafka.md index fda5a3bbe..4889a9e22 100644 --- a/concepts/bindings/specs/kafka.md +++ b/concepts/bindings/specs/kafka.md @@ -16,9 +16,18 @@ spec: value: group1 - name: publishTopic # Optional. in use for output bindings value: topic3 + - name: authRequired # Required. default: "true" + value: "false" + - name: saslUsername # Optional. + value: "user" + - name: saslPassword # Optional. + value: "password" ``` `topics` is a comma separated string of topics for an input binding. `brokers` is a comma separated string of kafka brokers. `consumerGroup` is a kafka consumer group to listen on. -`publishTopic` is the topic to publish for an output binding. \ No newline at end of file +`publishTopic` is the topic to publish for an output binding. +`authRequired` determines whether to use SASL authentication or not. +`saslUsername` is the SASL username for authentication. Only used if `authRequired` is set to `"true"`. +`saslPassword` is the SASL password for authentication. Only used if `authRequired` is set to `"true"`.