Updated config schema to use Array<> for multiline blocks + core wording tweaks
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Vendored
+2
-2
@@ -19,7 +19,7 @@ export interface Config {
|
||||
* Client ID used to Backstage uses to identify when connecting to the Kafka cluster.
|
||||
*/
|
||||
clientId: string;
|
||||
clusters: {
|
||||
clusters: Array<{
|
||||
name: string;
|
||||
/**
|
||||
* List of brokers in the Kafka cluster to connect to.
|
||||
@@ -46,6 +46,6 @@ export interface Config {
|
||||
/** @visibility secret */
|
||||
password: string;
|
||||
};
|
||||
}[];
|
||||
}>;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user