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:
Patrik Oldsberg
2021-06-01 20:20:46 +02:00
parent 3aeccc94ba
commit 1dcba7b7cf
3 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -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;
};
}[];
}>;
};
}