Azure: Add list of clouds in frontend AzureSettings (#84039)

Add list of supported clouds in AzureSettings
This commit is contained in:
Sergey Kostrukov 2024-03-12 06:49:30 -07:00 committed by GitHub
parent ae70cd953d
commit fe1ed0a9e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;