-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8694b4d
commit e088622
Showing
12 changed files
with
251 additions
and
367 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/core/swa-cli-persistence-plugin/impl/azure-environment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const Environment = { | ||
AzureCloud: { | ||
name: "AzureCloud", | ||
portalUrl: "https://portal.azure.com", | ||
publishingProfileUrl: "https://go.microsoft.com/fwlink/?LinkId=254432", | ||
managementEndpointUrl: "https://management.core.windows.net", | ||
resourceManagerEndpointUrl: "https://management.azure.com/", | ||
sqlManagementEndpointUrl: "https://management.core.windows.net:8443/", | ||
sqlServerHostnameSuffix: ".database.windows.net", | ||
galleryEndpointUrl: "https://gallery.azure.com/", | ||
activeDirectoryEndpointUrl: "https://login.microsoftonline.com/", | ||
activeDirectoryResourceId: "https://management.core.windows.net/", | ||
activeDirectoryGraphResourceId: "https://graph.windows.net/", | ||
batchResourceId: "https://batch.core.windows.net/", | ||
activeDirectoryGraphApiVersion: "2013-04-05", | ||
storageEndpointSuffix: "core.windows.net", | ||
keyVaultDnsSuffix: ".vault.azure.net", | ||
azureDataLakeStoreFileSystemEndpointSuffix: "azuredatalakestore.net", | ||
azureDataLakeAnalyticsCatalogAndJobEndpointSuffix: "azuredatalakeanalytics.net", | ||
validateAuthority: true, | ||
}, | ||
}; |
Oops, something went wrong.