Kafka (sarama) authentication with user/pass (#6291)

This commit is contained in:
Annanay Agarwal
2018-09-07 12:31:58 +05:30
committed by kannappanr
parent 67d8396af4
commit 7cb87f863e
3 changed files with 45 additions and 3 deletions

View File

@@ -91,7 +91,17 @@
"1": {
"enable": true,
"brokers": ["localhost:9092"],
"topic": "bucketevents"
"topic": "bucketevents",
"tls" : {
"enable" : true,
"skipVerify" : false,
"clientAuth" : 0
},
"sasl" : {
"enable" : true,
"username" : "kafka",
"password" : "kafkapasswd"
}
}
},
"webhook": {