From df3d84f161ca3315fec6b500e2d490dd4f2926ce Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Thu, 25 Feb 2021 09:56:42 +0100 Subject: [PATCH] add aws config (#31464) --- packages/grafana-runtime/src/config.ts | 2 ++ 1 file changed, 2 insertions(+) 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);