Skip to content

Commit b8e6211

Browse files
committed
Merge branch 'main' into release-aio-2603
2 parents ee63bff + 7b6533d commit b8e6211

43 files changed

Lines changed: 903 additions & 495 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

articles/azure-functions/durable/choose-orchestration-framework.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ titleSuffix: Durable Task
1414

1515
# Choose your hosting model
1616

17-
As described in [What is Durable Task?](what-is-durable-task.md), the Durable Task framework supports two hosting models:
17+
As described in [What is Durable Task?](what-is-durable-task.md), Durable Task supports two hosting models:
1818
- **Azure Functions** (via [Durable Functions](./durable-functions-overview.md))
1919
- **Self-hosted** (via [the standalone Durable Task SDKs](./durable-task-scheduler/durable-task-overview.md)).
2020

@@ -137,22 +137,11 @@ If you're already using Durable Functions and want to move to a container-based
137137

138138
For detailed migration guidance, see [Migrate from Durable Functions to the Durable Task SDKs](durable-functions-migrate.md).
139139

140-
## Unsupported Durable Task SDKs
140+
### Durable Task Framework (DTFx)
141141

142-
All Durable Task SDKs are open source and available on GitHub. However, some SDKs aren't officially supported by Microsoft or are still in experimental stages. The following SDKs are currently unsupported:
142+
The [Durable Task Framework](https://github.com/Azure/durabletask) (DTFx) is a community-maintained, open-source .NET library for durable orchestration. It provides similar orchestration primitives to the modern Durable Task SDKs and continues to be actively used in production by many teams, including within Microsoft. Notably, DTFx is used internally as a dependency of Azure Durable Functions, which is one of the reasons it continues to be maintained. However, it doesn't come with official Microsoft support—bugs and feature requests are addressed on a best-effort basis. It also requires you to manage hosting and operational infrastructure yourself.
143143

144-
### Durable Task Framework (Legacy)
145-
146-
The [Durable Task Framework](https://github.com/Azure/durabletask) (DTFx) is an older, open-source .NET Durable Task library. While it provides similar orchestration primitives, it predates the modern Durable Task SDKs and doesn't include official Microsoft support or the latest features. It also requires you to manage hosting, operational infrastructure, and long-term maintenance yourself.
147-
148-
If you're starting a new project, we recommend using the modern Durable Task SDKs or Durable Functions instead.
149-
150-
### Durable Task SDK for Go
151-
152-
The [Durable Task SDK for Go](https://github.com/Azure/durabletask-go) is a community-supported, open-source library that enables durable orchestration capabilities in Go applications. It's currently in experimental stages, doesn't work with any of the supported Durable Task state storage backends, and isn't recommended for production use.
153-
154-
> [!NOTE]
155-
> If you're interested in using Durable Task with Go with formal support from Microsoft, consider providing feedback by opening an issue in the [durabletask-go GitHub repository](https://github.com/Azure/durabletask-go/issues).
144+
If you're starting a new project or need official Microsoft support, we recommend using the modern Durable Task SDKs or Durable Functions instead.
156145

157146
## Next steps
158147

107 KB
Loading
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
title: Use private endpoints with Azure Maps
3+
description: Learn how to use private endpoints with Azure Maps.
4+
author: pbrasil
5+
ms.author: peterbr
6+
ms.date: 02/27/2026
7+
ms.topic: conceptual
8+
ms.service: azure-maps
9+
ms.subservice: authentication
10+
---
11+
12+
# Use private endpoints with Azure Maps
13+
14+
Azure Maps supports [Azure Private Link](/../private-link/private-link-overview.md), enabling secure access to Azure Maps services through a private endpoint in your virtual network. A private endpoint assigns a private IP address from your virtual network to the Azure Maps service, so traffic between your applications and Azure Maps stays on the Microsoft backbone network instead of the public internet. This provides improved security and network isolation. You can create a private endpoint when you create an Azure Maps account or add one to an existing account.
15+
16+
## Benefits of private endpoints for Azure Maps
17+
18+
Private endpoints provide the following benefits for Azure Maps accounts:
19+
20+
- **No Public Internet Exposure:** You can isolate your Azure Maps account from the public internet to reduce exposure to external threats. Only clients within your private network can access the account. This can be done by blocking external access through the _publicNetworkAccess_ feature.
21+
- **Secure VNet Communication:** Resources in your virtual network (such as VMs and containers) communicate with Azure Maps **using private IP addresses**. Traffic stays within the VNet, **simplifying network security** and avoiding public networks, which helps meet internal security and compliance requirements.
22+
23+
> [!NOTE]
24+
> All Azure Maps REST APIs (including Render, Search, Routing, and Weather) are fully supported with Private Link, with no loss of functionality. Using Azure Maps with Private Link works the same as public access, with added security.
25+
26+
## Prerequisites
27+
28+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn) before you begin.
29+
30+
- An [Azure Maps account](quick-demo-map-app.md#create-an-azure-maps-account). Use a Maps account and a virtual network in the **same Azure region** for optimal performance.
31+
- **A Virtual Network and Subnet**: A virtual network and subnet in your Azure subscription for the private endpoint. The subnet must have available IP addresses.
32+
- **Required permissions**
33+
- To create a private endpoint that's automatically approved, you need:
34+
- **Azure Maps Contributor** on the Azure Maps account
35+
- **Network Contributor** on the virtual network
36+
- To create a private endpoint that requires manual approval, only the **Network Contributor** role is required.
37+
- Choose whether Azure automatically manages DNS for the private endpoint using Azure Private DNS, or manage DNS manually. In most cases, Azure Private DNS provides the simplest setup.
38+
39+
## Configure a private endpoint for Azure Maps
40+
41+
To enable private connectivity for an Azure Maps account, create a private endpoint and configure DNS to route traffic through your virtual network.
42+
43+
### 1. Create the private endpoint (Portal or CLI)
44+
45+
In the Azure portal, go to **Create a resource** and search for _Private Endpoint_. You can also create a private endpoint from the **Networking** section of your Azure Maps resource. Select **Create** to open the wizard.
46+
47+
- **Basics:** Select the proper **Subscription** and **Resource Group** for the endpoint resource and choose a Name and Region (use the same region as your VNet).
48+
- **Resource:** For **Connection method**, choose _Connect to an Azure resource in my directory_. Then set:
49+
- **Resource type** = `Microsoft.Maps/accounts`. This tells Azure you want a private link to an Azure Maps account.
50+
- **Resource** = _Your Azure Maps account name_. Pick the specific Azure Maps account
51+
- **Target sub-resource** = `mapsAccount`. Azure Maps has a single private link subresource representing the account's data plane.
52+
- **Configuration:** Select the **Virtual Network** and **Subnet** where the private endpoint is placed. Ensure the subnet has space for one IP. Leave **Private DNS integration** enabled unless you plan to configure DNS manually. With DNS integration on, Azure creates a Private DNS zone for `privatelink.account.maps.azure.com` and add the necessary DNS record automatically.
53+
54+
Once creation is complete, go to your Azure Maps account in the portal and navigate to **Networking > Private endpoint connections**. You should see a new connection listed. If the private endpoint creator owns or has the proper permissions on the Azure Maps account, the connection is typically **auto-approved** (status shows **"Approved"**). If it shows **"Pending"**, manual approval may be required. After approval, the private link is established.
55+
56+
#### Example – Using Azure CLI
57+
58+
The following Azure CLI command creates a private endpoint for an Azure Maps account, equivalent to the portal steps above:
59+
60+
```azurecli
61+
az network private-endpoint create \
62+
--name <MyPrivateEndpointName> \
63+
--resource-group <MyResourceGroup> \
64+
--vnet-name <MyVNetName> \
65+
--subnet <MySubnetName> \
66+
--private-connection-resource-id "/subscriptions/<SubscriptionID>/resourceGroups/<MyResourceGroup>/providers/Microsoft.Maps/accounts/<MyMapsAccountName>" \
67+
--group-id mapsAccount \
68+
--connection-name <MyConnectionName>
69+
```
70+
71+
This command specifies the Maps account resource ID and the `mapsAccount` subresource, along with the virtual network and subnet used for the private endpoint.
72+
73+
### 2. Configure DNS for the private endpoint
74+
75+
If you enabled **Private DNS integration** when creating the private endpoint (the default), Azure automatically creates a Private DNS zone for `privatelink.account.maps.azure.com` in your subscription and links it to your virtual network.
76+
77+
Within this zone, a DNS record maps your Azure Maps account's unique ID and region to the private IP address of the endpoint. For example, if your Maps account client ID is `abc123` and the region is `East US`, the DNS record resolves that hostname to the private endpoint IP address:
78+
79+
- **Record name:** `abc123.eastus.account.maps.azure.com`
80+
- **Record value:** `10.x.y.z` - The private IP address assigned to the endpoint.
81+
82+
Clients inside the virtual network resolve the hostname to a private IP address for private connectivity, while clients outside the network resolve the same hostname to the Azure Maps public endpoint. This split‑horizon DNS approach lets you use a single endpoint URL both inside and outside the virtual network.
83+
84+
If you don't use automatic DNS integration, configure DNS manually so the Azure Maps account hostname
85+
(`<maps-account-client-id>.<location>.privatelink.account.maps.azure.com`) resolves to the private endpoint IP address within your network. For more information, see [Azure Private Endpoint DNS documentation](/../private-link/private-endpoint-dns.md).
86+
87+
### 3. Use the private endpoint in your applications
88+
89+
To use the private endpoint, configure your applications to call the **Azure Maps account-specific endpoint**. You can find this endpoint in the Azure Maps account **Overview** or **Authentication** pages, or in the private endpoint resource under **DNS configuration** (customer-visible FQDNs).
90+
91+
:::image type="content" source="./media/private-endpoint/dns-configuration.png" alt-text="A screenshot showing an Azure portal sidebar menu for a private endpoint resource, highlighting the DNS configuration option under Settings. The menu includes options such as Overview, Activity log, Access control IAM, Tags, Diagnose and solve problems, Resource visualizer, Application security groups, DNS configuration, and Properties.":::
92+
93+
The access pattern is:
94+
95+
`https://{maps-account-client-id}.{location}.privatelink.account.maps.azure.com`
96+
97+
> [!Important]
98+
> If your application continues to use the default Azure Maps endpoint (such as `atlas.microsoft.com`), requests won't be routed through the private endpoint. Azure Maps SDKs support overriding the default endpoint, so configure your SDK or connection code to use your Azure Maps account–specific hostname. When configured, requests from within your network are automatically routed through Private Link.
99+
100+
### 4. [Optional] Disable public network access
101+
102+
Even after creating a private endpoint, your Azure Maps account's public endpoints remain active by default. This allows existing applications outside the virtual network to continue working until you intentionally restrict them. If you require **exclusive private access**, disable public network access for the Maps account.
103+
104+
In the Azure portal, open your Maps account and go to **Networking**. Set **Public access** to **Disable** and save. Once completed, Azure Maps rejects **any** connection attempts over the public endpoint. This adds an extra layer of protection: even if someone has your Maps authentication key or SAS token, they can't use it from the internet once public access is off.
105+
106+
> You can also disable public access via ARM templates or the Azure CLI by setting the property `publicNetworkAccess` to `Disabled`.
107+
108+
After disabling **Public network access**, validate connectivity from each application. Public endpoints (for example, `atlas.microsoft.com`) are blocked by design, so update all application and SDK configurations to use the private DNS endpoint.
109+
110+
### Other considerations
111+
112+
- **DNS Resolution:** If you can't connect to Azure Maps through the private endpoint, verify your DNS configuration, as DNS issues are a common cause of connectivity problems.
113+
- **Multiple Networks:** You can create multiple private endpoints for a single Azure Maps account to connect from different virtual networks. Each private endpoint uses one IP address from the selected subnet.
114+
115+
Using Azure Private Link with Azure Maps keeps all application traffic on private networks. This improves security and supports enterprise network policies while maintaining full Azure Maps functionality. Azure Maps is accessed through private IP addresses and DNS, ensuring traffic remains within your controlled network boundary.
116+
117+
Ask Copilot
118+
119+
## Related content
120+
121+
- [Azure Private Endpoint private DNS zone values](/../private-link/private-endpoint-dns.md)
122+
- [Azure Private Link availability](/../private-link/availability.md)

articles/azure-maps/toc.yml

Lines changed: 49 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -32,42 +32,56 @@ items:
3232
href: tutorial-snap-to-Road.md
3333
- name: Concepts
3434
items:
35-
- name: Authentication with Azure Maps
36-
href: azure-maps-authentication.md
37-
- name: Authentication best practices
38-
href: authentication-best-practices.md
39-
- name: Azure Maps Event Grid integration
40-
href: azure-maps-event-grid-integration.md
41-
- name: Azure Maps geographic scope
42-
href: geographic-scope.md
43-
- name: Consent management
44-
href: consent-management.md
45-
- name: Azure Services that support managed identities
46-
href: ../active-directory/managed-identities-azure-resources/managed-identities-status.md
47-
- name: Coverage
35+
- name: Security & Identity
4836
items:
49-
- name: Coverage
50-
href: geographic-coverage.md
51-
- name: Geocoding coverage
52-
href: geocoding-coverage.md
53-
- name: Traffic coverage
54-
href: traffic-coverage.md
55-
- name: Render coverage
56-
href: render-coverage.md
57-
- name: Routing coverage
58-
href: routing-coverage.md
59-
- name: Weather coverage
60-
href: weather-coverage.md
61-
- name: Localization support
62-
href: supported-languages.md
63-
- name: Supported map styles
64-
href: supported-map-styles.md
65-
- name: Zoom levels and tile grid
66-
href: zoom-levels-and-tile-grid.md
67-
- name: Weather service concepts
68-
href: weather-services-concepts.md
69-
- name: Weather service FAQ
70-
href: weather-services-faq.yml
37+
- name: Authentication with Azure Maps
38+
href: azure-maps-authentication.md
39+
- name: Authentication best practices
40+
href: authentication-best-practices.md
41+
- name: Azure Maps Event Grid integration
42+
href: azure-maps-event-grid-integration.md
43+
- name: Consent management
44+
href: consent-management.md
45+
- name: Use private endpoints with Azure Maps
46+
href: private-endpoints.md
47+
- name: Azure Services that support managed identities
48+
href: ../active-directory/managed-identities-azure-resources/managed-identities-status.md
49+
- name: Integration
50+
items:
51+
- name: Azure Maps Event Grid integration
52+
href: azure-maps-event-grid-integration.md
53+
- name: Geography & Coverage
54+
items:
55+
- name: Azure Maps geographic scope
56+
href: geographic-scope.md
57+
- name: Coverage
58+
items:
59+
- name: Geographic coverage
60+
href: geographic-coverage.md
61+
- name: Geocoding coverage
62+
href: geocoding-coverage.md
63+
- name: Traffic coverage
64+
href: traffic-coverage.md
65+
- name: Render coverage
66+
href: render-coverage.md
67+
- name: Routing coverage
68+
href: routing-coverage.md
69+
- name: Weather coverage
70+
href: weather-coverage.md
71+
- name: Localization support
72+
href: supported-languages.md
73+
- name: Maps & Visualization
74+
items:
75+
- name: Supported map styles
76+
href: supported-map-styles.md
77+
- name: Zoom levels and tile grid
78+
href: zoom-levels-and-tile-grid.md
79+
- name: Weather service
80+
items:
81+
- name: Weather service concepts
82+
href: weather-services-concepts.md
83+
- name: Weather service FAQ
84+
href: weather-services-faq.yml
7185
- name: How-to guides
7286
items:
7387
- name: Migrate from Bing Maps

articles/azure-resource-manager/bicep/bicep-mcp-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The Bicep MCP (Model Context Protocol) server provides AI agents with tools to h
2020
* **`list_avm_metadata`** - Lists metadata for all Azure Verified Modules (AVM).
2121
* **`list_az_resource_types_for_provider`** - Lists all Azure resource types for a specific provider, such as Microsoft.Storage.
2222

23-
Use the Bicep MCP server directly in [Visual Studio Code](#visual-studio-code). You can also run it locally with [MCP-compatible services](#integration-with-other-foundry-tools).
23+
Use the Bicep MCP server directly in [Visual Studio Code](#visual-studio-code). You can also run it locally with [MCP-compatible services](#integration-with-other-ai-services).
2424

2525
## Limitations
2626

@@ -35,7 +35,7 @@ There's no way to definitively guarantee whether the agent orchestrator uses any
3535

3636
The Bicep MCP server is available starting with Visual Studio Code Bicep extension version 0.40.2. For more information about installing, managing, and using Bicep MCP server from VS Code, see [Bicep MCP server](./visual-studio-code.md#bicep-mcp-server).
3737

38-
## Integration with other Foundry Tools
38+
## Integration with other AI services
3939

4040
You can run the Azure Bicep MCP server locally for Claude Desktop and Code, OpenAI Codex CLI, and LMStudio where you can use it with various models.
4141

articles/communication-services/concepts/ai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ Similar to Azure Communication Services messaging, there are REST APIs for many
5757
- **[Call Automation REST APIs and SDKs](../concepts/call-automation/call-automation.md)**: Services and AI applications use Call Automation REST APIs to answer, route, and manage all types of Azure voice and video calls.
5858
- **[Service-to-service audio streaming](../concepts/call-automation/audio-streaming-concept.md)**: AI applications use Azure's service-to-service WebSockets API to stream audio data. This works in both directions, your AI can listen to a call, and speak.
5959
- **[Service-to-service real-time transcription](../concepts/call-automation/real-time-transcription.md)**: AI applications use Azure's service-to-service WebSockets API to stream a real-time, Azure-generated transcription. Compared to audio or video content, transcript data is often easier for AI models to reason upon.
60-
- **[Call recording](../concepts/voice-video-calling/call-recording.md)**: You can record Azure calls in your own datastore and then direct Foundry Tools to process that content.
60+
- **[Call recording](../concepts/voice-video-calling/call-recording.md)**: You can record Azure calls in your own datastore and then direct the AI service to process that content.
6161
- **[Client raw audio and video](../concepts/voice-video-calling/media-access.md)**: The Calling client SDK provides APIs for accessing and modifying the raw audio and video feed. An example scenario is taking the video feed, using computer vision to distinguish the human speaker from their background, and customizing that background.

0 commit comments

Comments
 (0)