Skip to content

Commit

Permalink
fix trailing slash (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
weidongxu-microsoft authored Mar 11, 2021
1 parent 50758b4 commit 2c1a3e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ResourceManagement/ResourceManager/AzureEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static AzureEnvironment()
Name = nameof(AzureUSGovernment),
AuthenticationEndpoint = "https://login.microsoftonline.us/",
ResourceManagerEndpoint = "https://management.usgovcloudapi.net/",
ManagementEndpoint = "https://management.core.usgovcloudapi.net",
ManagementEndpoint = "https://management.core.usgovcloudapi.net/",
GraphEndpoint = "https://graph.windows.net/",
StorageEndpointSuffix = "core.usgovcloudapi.net",
KeyVaultSuffix = "vault.usgovcloudapi.net"
Expand All @@ -46,7 +46,7 @@ static AzureEnvironment()
Name = nameof(AzureGermanCloud),
AuthenticationEndpoint = "https://login.microsoftonline.de/",
ResourceManagerEndpoint = "https://management.microsoftazure.de/",
ManagementEndpoint = "https://management.core.cloudapi.de",
ManagementEndpoint = "https://management.core.cloudapi.de/",
GraphEndpoint = "https://graph.cloudapi.de/",
StorageEndpointSuffix = "core.cloudapi.de",
KeyVaultSuffix = "vault.microsoftazure.de"
Expand Down

0 comments on commit 2c1a3e3

Please sign in to comment.