-
Notifications
You must be signed in to change notification settings - Fork 208
National Clouds
Abhidnya edited this page Oct 29, 2019
·
3 revisions
National clouds (aka Sovereign clouds) are physically isolated instances of Azure. These regions of Azure are designed to make sure that data residency, sovereignty, and compliance requirements are honored within geographical boundaries.
In addition to the public cloud, Azure Active Directory is deployed in the following National clouds:
- Azure US Government
- Azure China 21Vianet
- Azure Germany
Note that enabling your application for sovereign clouds requires you to:
- Register your application in a specific portal, depending on the cloud. For more information on how to choose the portal refer App registration endpoints
- Use any of the samples from the repo with a few changes to the configuration, depending on the cloud, which are mentioned next.
- Use a specific authority, depending on the cloud you registered the application in. For more information on authorities for different clouds, refer Azure AD Authentication endpoints. An example authority:
"authority": "https://login.microsoftonline.us/Enter_the_Tenant_Info_Here"- In case you want to call the graph, this requires a specific Graph endpoint URL, depending on the cloud. To find Microsoft Graph endpoints for all the national clouds, refer Microsoft Graph and Graph Explorer service root endpoints. An example of a graph endpoint with scope is:
"endpoint" : "https://graph.microsoft.us/v1.0/me"
"scope": "User.Read"