Added support for SSL connection to the Kafka cluster

This commit is contained in:
Nir Gazit
2021-01-17 14:45:29 +02:00
parent 895eb46961
commit 66025c7d59
5 changed files with 33 additions and 11 deletions
+5
View File
@@ -17,5 +17,10 @@ export interface Config {
kafka?: {
clientId: string;
brokers: string[];
ssl?: {
ca: string[];
key: string;
cert: string;
};
};
}