Merge pull request #8063 from gotson/patch-1

Update Kafka configuration types
This commit is contained in:
Fredrik Adelöw
2021-11-17 10:15:40 +01:00
committed by GitHub
2 changed files with 9 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kafka-backend': patch
---
Update Kafka configuration types
+4 -3
View File
@@ -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;
/**