Edit

Share via


Enable multi-Geo capability for Microsoft Entra Private Access (Preview)

Multi-Geo capability can help optimize the traffic flow from Microsoft Entra clients to Microsoft Entra apps through private access. This article explains how to enable the multi-Geo capability for Microsoft Entra Private Access.

Important

Multi-Geo capability for Microsoft Entra Private Access is currently in PREVIEW. This information relates to a prerelease product that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. The preview is for testing purposes; don't use the preview for production traffic. We recommend that you use a test tenant for the preview. If you must use a production tenant for testing, don't use production connector groups. Instead, create a separate test connector group.

Prerequisites

Overview

Multi-Geo capability helps optimize traffic flow from Microsoft Entra clients to Microsoft Entra apps through private access. Currently, the tenant's default geo location determines the Microsoft Entra routing for private access. For instance, if a tenant's default region is North America, all connector groups must connect to the Microsoft Entra backend in North America, even if some applications and connector groups are in different regions. Multi-Geo support lets customers optimize traffic flow by assigning connector groups according to their preferred geo locations instead of relying solely on the tenant's geo location. Each connector group connects to the SSE backend in the selected area, enhancing overall efficiency. This arrangement provides customers with the flexibility to direct connections to the SSE backend of their choice.

Diagram that illustrates how Multi-Geo support routes traffic with Microsoft Entra private network connectors.

Enable multi-Geo capability

To enable the multi-Geo capability for Microsoft Entra Private Access, complete the following steps. This procedure involves creating connector groups in different geographic regions, installing connectors, and adding application segments to the connector groups.

  1. Sign in to the Microsoft Entra admin center as a Global Secure Access Administrator.
  2. Browse to Applications > Enterprise applications > Private Network connectors.
  3. Create two connector groups, each associated with a different geographic region.
    1. Select + New Connector Group.
    2. In the New Connector Group pane, enter a name for the connector group.
    3. Under Advanced settings, select the optimized country/region for the connector group. The region you select determines the backend that the connector group connects to.
    4. Repeat steps a - c for the second connector group.
  4. Install a connector in each region. These connector installations require working with an admin in the associated region. For more information, see How to configure private network connectors for Microsoft Entra Private Access and Microsoft Entra application proxy.
  5. Add an application segment to each of the connector groups.
    1. Browse to Global Secure Access > Applications > Enterprise applications > Network access properties.
    2. Select + Add application segment.
    3. Select the application segment you want to add to the connector group.
    4. Select Save.
    5. Repeat steps a - d for the second connector group.
  6. After about 30 minutes, the multi-Geo configuration takes effect and traffic begins flowing.

Note

  • Multi-Geo connectors aren't available through Quick Access. Multi-Geo supports only private enterprise apps.
  • Multi-Geo doesn't support the Domain Name System (DNS) experience.
  • Mulit-Geo doesn't support Japan region selection through Microsoft Entra admin center.

Enable multi-Geo capability for Japan region

The UI experience through the Microsoft Entra admin center doesn't support the Japan region yet. To select Japan as country/region for the connector group, use Microsoft Graph APIs:

  • Open Microsoft Graph Explorer and login with the tenant account.
  • Create a Connector Group using Graph API. Use region property to assign the region to Japan. For example, run the POST request with region set to Japan to create a connector group assigned to Japan.

Example HTTP Request

POST https://graph.microsoft.com/beta/onPremisesPublishingProfiles/applicationProxy/connectorGroups
Content-type: application/json

{
  "name": "<Connector Group Name>",
  "region": "Japan"
}