mirror of https://github.com/dapr/docs.git
Update kafka.md (#250)
This commit is contained in:
parent
5d692d0da5
commit
3f64575311
|
@ -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.
|
||||
`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"`.
|
||||
|
|
Loading…
Reference in New Issue