mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Azure: Add list of clouds in frontend AzureSettings (#84039)
Add list of supported clouds in AzureSettings
This commit is contained in:
parent
ae70cd953d
commit
fe1ed0a9e1
@ -21,11 +21,17 @@ import {
|
|||||||
|
|
||||||
export interface AzureSettings {
|
export interface AzureSettings {
|
||||||
cloud?: string;
|
cloud?: string;
|
||||||
|
clouds?: AzureCloudInfo[];
|
||||||
managedIdentityEnabled: boolean;
|
managedIdentityEnabled: boolean;
|
||||||
workloadIdentityEnabled: boolean;
|
workloadIdentityEnabled: boolean;
|
||||||
userIdentityEnabled: boolean;
|
userIdentityEnabled: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AzureCloudInfo {
|
||||||
|
name: string;
|
||||||
|
displayName: string;
|
||||||
|
}
|
||||||
|
|
||||||
export type AppPluginConfig = {
|
export type AppPluginConfig = {
|
||||||
id: string;
|
id: string;
|
||||||
path: string;
|
path: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user