Merge pull request #8063 from gotson/patch-1
Update Kafka configuration types
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-kafka-backend': patch
|
||||
---
|
||||
|
||||
Update Kafka configuration types
|
||||
Vendored
+4
-3
@@ -31,10 +31,11 @@ export interface Config {
|
||||
*/
|
||||
ssl?:
|
||||
| {
|
||||
ca: string[];
|
||||
ca?: string[];
|
||||
/** @visibility secret */
|
||||
key: string;
|
||||
cert: string;
|
||||
key?: string;
|
||||
cert?: string;
|
||||
rejectUnauthorized?: boolean;
|
||||
}
|
||||
| boolean;
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user