From fe1ed0a9e1d68043e2cf3380e4381f700484d0fa Mon Sep 17 00:00:00 2001 From: Sergey Kostrukov Date: Tue, 12 Mar 2024 06:49:30 -0700 Subject: [PATCH] Azure: Add list of clouds in frontend AzureSettings (#84039) Add list of supported clouds in AzureSettings --- packages/grafana-runtime/src/config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/grafana-runtime/src/config.ts b/packages/grafana-runtime/src/config.ts index 52647d5daf6..5edf015919d 100644 --- a/packages/grafana-runtime/src/config.ts +++ b/packages/grafana-runtime/src/config.ts @@ -21,11 +21,17 @@ import { export interface AzureSettings { cloud?: string; + clouds?: AzureCloudInfo[]; managedIdentityEnabled: boolean; workloadIdentityEnabled: boolean; userIdentityEnabled: boolean; } +export interface AzureCloudInfo { + name: string; + displayName: string; +} + export type AppPluginConfig = { id: string; path: string;