diff --git a/packages/backend-common/config.d.ts b/packages/backend-common/config.d.ts index 8dd2c2db84..5be1a76b54 100644 --- a/packages/backend-common/config.d.ts +++ b/packages/backend-common/config.d.ts @@ -203,5 +203,13 @@ export interface Config { * remove the default value that Backstage puts in place for that policy. */ csp?: { [policyId: string]: string[] | false }; + + /** + * Discovery options. + * + * The keys are the plugin IDs, and the values are their endpoint URLs which + * will be used by `HostDiscovery` implementation. + */ + discovery?: { [pluginId: string]: string }; }; }