Skip to content

Commit a2b132d

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into nw-freshness
2 parents 12e0375 + 6ea1b35 commit a2b132d

33 files changed

Lines changed: 185 additions & 136 deletions
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Include file
3-
description: Include file
3+
description: Notes about 'apic-extension' Azure CLI extension installation.
44
services: api-center
5-
5+
author: dlepow
66

77
ms.service: azure-api-center
88
ms.topic: include
9-
ms.date: 05/23/2024
10-
9+
ms.date: 02/20/2026
10+
ms.author: danlep
1111
ms.custom: Include file
1212
---
1313

1414
> [!NOTE]
15-
> `az apic` commands require the `apic-extension` Azure CLI extension. If you haven't used `az apic` commands, the extension can be installed dynamically when you run your first `az apic` command, or you can install the extension manually. Learn more about [Azure CLI extensions](/cli/azure/azure-cli-extensions-overview).
15+
> The `az apic` commands require the `apic-extension` Azure CLI extension. The extension can be installed dynamically when you run your first `az apic` command, or you can install the extension manually. For more information, see [Manage Azure CLI Extensions: Install, Update, and Remove](/cli/azure/azure-cli-extensions-overview).
1616
>
17-
> See the [release notes](https://github.com/Azure/azure-cli-extensions/blob/main/src/apic-extension/HISTORY.rst) for the latest changes and updates in the `apic-extension`. Certain features may require a preview or specific version of the extension.
17+
> For the latest changes and updates in the `apic-extension`, see the [release notes](https://github.com/Azure/azure-cli-extensions/blob/main/src/apic-extension/HISTORY.rst). Certain features might require a preview or specific version of the extension.
99.6 KB
Loading
Binary file not shown.
42.1 KB
Loading
73.3 KB
Loading

articles/api-center/register-apis-github-actions.md

Lines changed: 92 additions & 62 deletions
Large diffs are not rendered by default.

articles/app-service/configure-vnet-integration-routing.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This how-to article walks you through configuring routing on a regi
44
author: seligj95
55
ms.author: jordanselig
66
ms.topic: how-to
7-
ms.date: 11/24/2025
7+
ms.date: 02/25/2026
88
ms.service: azure-app-service
99
---
1010

@@ -20,7 +20,7 @@ Your app is already integrated using the regional virtual network integration fe
2020

2121
Application routing defines what traffic is routed from your app and into the virtual network. You can configure routing at two levels:
2222

23-
- **All traffic routing** (`outboundVnetRouting.allTraffic`): Routes all outbound traffic from your app through the virtual network integration, including application traffic and configuration traffic (such as container image pulls, content share access, and backup operations).
23+
- **All traffic routing** (`outboundVnetRouting.allTraffic`): Routes all outbound traffic from your app through the virtual network integration, including application traffic and configuration traffic (such as container image pulls, content share access, backup operations, and managed identity token acquisition).
2424
- **Application traffic only** (`outboundVnetRouting.applicationTraffic`): Routes only application-generated traffic through the virtual network integration, while configuration traffic continues to use the public route by default (unless individually configured in the configuration routing section).
2525

2626
We recommend that you use the `outboundVnetRouting.allTraffic` property to enable routing of all traffic. Using this property allows you to audit the behavior with [a built-in policy](https://www.azadvertizer.net/azpolicyadvertizer/a691eacb-474d-47e4-b287-b4813ca44222.html).
@@ -114,6 +114,14 @@ az resource update --resource-group <group-name> --name <app-name> --resource-ty
114114
> [!NOTE]
115115
> For backwards compatibility, the legacy `vnetBackupRestoreEnabled` property is still supported.
116116
117+
### Managed identity
118+
119+
Routing managed identity token acquisition traffic over virtual network integration can be configured using the Azure CLI. When enabled, requests to acquire Microsoft Entra tokens for managed identities are routed through the virtual network integration.
120+
121+
```azurecli-interactive
122+
az resource update --resource-group <group-name> --name <app-name> --resource-type "Microsoft.Web/sites" --set properties.outboundVnetRouting.managedIdentityTraffic=true
123+
```
124+
117125
## Next steps
118126

119127
- [Enable virtual network integration](./configure-vnet-integration-enable.md)

articles/app-service/overview-vnet-integration.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Integrate your app with an Azure virtual network
33
description: Integrate your app in Azure App Service with Azure virtual networks.
44
author: seligj95
55
ms.topic: conceptual
6-
ms.date: 09/03/2025
6+
ms.date: 02/25/2026
77
ms.update-cycle: 1095-days
88
ms.author: jordanselig
99
ms.custom:
@@ -92,7 +92,7 @@ For each App Service plan instance, you need:
9292
For 10 instances:
9393
5 x 10 = 50 IP addresses per App Service plan
9494

95-
Since you have 1 App Service plan, 1 x 50 = 50 IP addresses.
95+
Since you have 1 App Service plan, 1 x 50 = 50 IP addresses
9696

9797
You are in addition limited by the number of cores available in the worker tier used. Each core adds three networking units. The worker itself uses one unit and each virtual network connection uses one unit. The remaining units can be used for apps.
9898

@@ -151,6 +151,10 @@ When using custom containers, you can pull the container over the virtual networ
151151

152152
App Service has built-in backup/restore, but if you want to back up to your own storage account, you can use the custom backup/restore feature. If you want to route the traffic to the storage account through the virtual network integration, you must configure the route setting. Database backup isn't supported over the virtual network integration.
153153

154+
#### Managed identity
155+
156+
By default, managed identity token acquisition traffic goes over the public route. You can route this traffic through the virtual network integration so that token requests to Microsoft Entra ID are sent through the virtual network. Learn [how to configure managed identity routing](./configure-vnet-integration-routing.md#managed-identity).
157+
154158
#### App settings using Key Vault references
155159

156160
App settings using Key Vault references attempt to get secrets over the public route. If the Key Vault is blocking public traffic and the app is using virtual network integration, an attempt is made to get the secrets through the virtual network integration.

articles/internet-peering/faqs.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: Internet peering - FAQ
2+
title: Internet Peering - FAQ
33
description: This article provides answers to some of the frequently asked questions asked about Internet peering.
44
services: internet-peering
55
author: halkazwini
66
ms.author: halkazwini
77
ms.service: internet-peering
88
ms.topic: faq
9-
ms.date: 10/23/2024
9+
ms.date: 02/25/2026
10+
1011
# Customer intent: As a network engineer, I want to understand the differences between Internet peering options and their configurations, so that I can effectively manage my organization’s connectivity and optimize performance when integrating with Microsoft services.
1112
---
1213

articles/internet-peering/how-to-exchange-route-server-portal.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
2-
title: Create or modify an Exchange peering with Route Server - Azure portal
2+
title: Create or Modify an Exchange Peering with Route Server - Azure Portal
33
titleSuffix: Internet Peering
44
description: Create or modify an Exchange peering with Route Server using the Azure portal.
5-
ms.author: halkazwini
65
author: halkazwini
6+
ms.author: halkazwini
77
ms.service: internet-peering
88
ms.topic: how-to
9-
ms.date: 03/03/2025
9+
ms.date: 02/25/2026
1010
ms.custom: sfi-image-nochange
1111

12-
#CustomerIntent: As an administrator, I want to learn how to create or modify an an Exchange peering with Route Server using the Azure portal so I can manage my Exchange peerings.
1312
# Customer intent: As a network administrator, I want to create or modify an Exchange peering with Route Server using the Azure portal, so that I can efficiently manage my network configurations and ensure optimal connectivity.
1413
---
1514

0 commit comments

Comments
 (0)