Merge branch 'master' into multi-cluster
This commit is contained in:
Vendored
+11
@@ -15,12 +15,23 @@
|
||||
*/
|
||||
export interface Config {
|
||||
kafka?: {
|
||||
/**
|
||||
* Client ID used to Backstage uses to identify when connecting to the Kafka cluster.
|
||||
*/
|
||||
clientId: string;
|
||||
clusters: {
|
||||
name: string;
|
||||
/**
|
||||
* List of brokers in the Kafka cluster to connect to.
|
||||
*/
|
||||
brokers: string[];
|
||||
/**
|
||||
* Optional SSL connection parameters to connect to the cluster. Passed directly to Node tls.connect.
|
||||
* See https://nodejs.org/dist/latest-v8.x/docs/api/tls.html#tls_tls_createsecurecontext_options
|
||||
*/
|
||||
ssl?: {
|
||||
ca: string[];
|
||||
/** @visibility secret */
|
||||
key: string;
|
||||
cert: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user