diff --git a/packages/grafana-runtime/src/config.ts b/packages/grafana-runtime/src/config.ts index 4eb8e96c0c2..d282526522e 100644 --- a/packages/grafana-runtime/src/config.ts +++ b/packages/grafana-runtime/src/config.ts @@ -70,6 +70,8 @@ export class GrafanaBootConfig implements GrafanaConfig { marketplaceUrl?: string; expressionsEnabled = false; customTheme?: any; + awsAllowedAuthProviders: string[] = []; + awsAssumeRoleEnabled = false; constructor(options: GrafanaBootConfig) { this.theme = options.bootData.user.lightTheme ? getTheme(GrafanaThemeType.Light) : getTheme(GrafanaThemeType.Dark);