You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/app-service-hybrid-connections.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to create and use hybrid connections in Azure App Service
4
4
author: seligj95
5
5
ms.assetid: 66774bde-13f5-45d0-9a70-4e9536a4f619
6
6
ms.topic: how-to
7
-
ms.date: 10/15/2025
7
+
ms.date: 10/27/2025
8
8
ms.update-cycle: 1095-days
9
9
ms.author: jordanselig
10
10
#customer intent: As an app developer, I want to understand the usage of Hybrid Connections to provide access to apps in Azure App Service.
@@ -140,6 +140,9 @@ The Hybrid Connections feature requires a relay agent in the network that hosts
140
140
141
141
This tool runs on both Windows and Linux. On Windows, the Hybrid Connection Manager requires Windows Server 2012 and later. The Hybrid Connection Manager runs as a service and connects outbound to Azure Relay on port 443.
142
142
143
+
> [!NOTE]
144
+
> As of October 20, 2025, [Azure Service Bus no longer supports TLS 1.0 and TLS 1.1][ServiceBus]. The minimum TLS version is now 1.2 for all Service Bus deployments. Hybrid Connections use Service Bus for connectivity. App Service Hybrid Connection Manager version 0.7.7 and later supports TLS 1.2. If you are on a previous version, **you must update to the new version of the Hybrid Connection Manager as soon as possible to prevent service disruption.**
145
+
143
146
### Installation instructions
144
147
145
148
# [Windows](#tab/windows)
@@ -400,3 +403,4 @@ If you have a command-line client for your endpoint, you can test connectivity f
Copy file name to clipboardExpand all lines: articles/application-gateway/for-containers/how-to-header-rewrite-gateway-api.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: application gateway
5
5
author: mbender-ms
6
6
ms.service: azure-appgw-for-containers
7
7
ms.topic: how-to
8
-
ms.date: 11/5/2024
8
+
ms.date: 10/27/2025
9
9
ms.author: mbender
10
10
# Customer intent: As a cloud engineer, I want to implement HTTP header rewrites in Application Gateway for Containers, so that I can modify request and response headers for backend services to better handle client requests.
11
11
---
@@ -213,6 +213,9 @@ spec:
213
213
EOF
214
214
```
215
215
216
+
>[!Note]
217
+
>Modifying the `Host` header is not supported with a `requestHeaderModifier` rule. To override the `Host` value specified to the backend target, use a [URLRewrite](how-to-url-rewrite-gateway-api.md#deploy-the-required-gateway-api-resources) filter.
218
+
216
219
Once the HTTPRoute resource is created, ensure the route is _Accepted_ and the Application Gateway for Containers resource is _Programmed_.
Copy file name to clipboardExpand all lines: articles/application-gateway/for-containers/how-to-header-rewrite-ingress-api.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: application gateway
5
5
author: mbender-ms
6
6
ms.service: azure-appgw-for-containers
7
7
ms.topic: how-to
8
-
ms.date: 10/23/2025
8
+
ms.date: 10/27/2025
9
9
ms.author: mbender
10
10
# Customer intent: "As a cloud architect, I want to implement header rewriting in the Ingress API for Application Gateway for Containers, so that I can modify request and response headers for backend services to meet application requirements and facilitate better control over traffic management."
11
11
---
@@ -197,6 +197,9 @@ spec:
197
197
EOF
198
198
```
199
199
200
+
>[!Note]
201
+
>Modifying the `Host` header is not supported with a `requestHeaderModifier` rule. To override the `Host` value specified to the backend target, use a [URLRewrite](how-to-url-rewrite-ingress-api.md#deploy-the-required-ingress-api-resources) filter.
202
+
200
203
Once the IngressExtension resource is created, ensure the resource returns _No validation errors_ and is valid.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/deploy-to-resource-group.md
+68-14Lines changed: 68 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
-
title: Deploy resources to resource groups
3
-
description: Describes how to deploy resources in an Azure Resource Manager template. It shows how to target more than one resource group.
2
+
title: Use Azure Resource Manager templates to deploy resources to resource groups
3
+
description: Learn how to deploy resources in an Azure Resource Manager template and how to target more than one resource group.
4
4
ms.topic: how-to
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 08/01/2025
6
+
ms.date: 10/27/2025
7
7
---
8
8
9
-
# Resource group deployments with ARM templates
9
+
# Use Azure Resource Manager templates to deploy resources to resource groups
10
10
11
11
This article describes how to scope your deployment to a resource group. You use an Azure Resource Manager template (ARM template) for the deployment. The article also shows how to expand the scope beyond the resource group in the deployment operation.
12
12
@@ -43,7 +43,7 @@ To deploy to a resource group, use the resource group deployment commands.
43
43
44
44
# [Azure CLI](#tab/azure-cli)
45
45
46
-
For Azure CLI, use [az deployment group create](/cli/azure/deployment/group#az-deployment-group-create). The following example deploys a template to create a resource group. The resource group you specify in the `--resource-group` parameter is the **target resource group**:
46
+
For the Azure CLI, use [`az deployment group create`](/cli/azure/deployment/group#az-deployment-group-create). The following example deploys a template to create a resource group. The resource group you specify in the `--resource-group` parameter is the **target resource group**:
47
47
48
48
```azurecli-interactive
49
49
az deployment group create \
@@ -53,9 +53,9 @@ az deployment group create \
53
53
--parameters storageAccountType=Standard_GRS
54
54
```
55
55
56
-
# [PowerShell](#tab/azure-powershell)
56
+
# [Azure PowerShell](#tab/azure-powershell)
57
57
58
-
For the PowerShell deployment command, use [New-AzResourceGroupDeployment](/powershell/module/az.resources/new-azresourcegroupdeployment). The following example deploys a template to create a resource group. The resource group you specify in the `-ResourceGroupName` parameter is the **target resource group**:
58
+
For the Azure PowerShell deployment command, use [`New-AzResourceGroupDeployment`](/powershell/module/az.resources/new-azresourcegroupdeployment). The following example deploys a template to create a resource group. The resource group you specify in the `-ResourceGroupName` parameter is the **target resource group**:
For more detailed information about deployment commands and options for deploying ARM templates, see:
71
71
72
-
*[Deploy resources with ARM templates and Azure portal](deploy-portal.md)
73
-
*[Deploy resources with ARM templates and Azure CLI](deploy-cli.md)
72
+
*[Deploy resources with ARM templates and the Azure portal](deploy-portal.md)
73
+
*[Deploy resources with ARM templates and the Azure CLI](deploy-cli.md)
74
74
*[Deploy resources with ARM templates and Azure PowerShell](deploy-powershell.md)
75
75
*[Deploy resources with ARM templates and Azure Resource Manager REST API](deploy-rest.md)
76
-
*[Use a deployment button to deploy templates from GitHub repository](deploy-to-azure-button.md)
76
+
*[Use a deployment button to deploy templates from a GitHub repository](deploy-to-azure-button.md)
77
77
*[Deploy ARM templates from Cloud Shell](deploy-cloud-shell.md)
78
78
79
79
## Deployment scopes
@@ -263,14 +263,68 @@ For more information, see [Management group](deploy-to-management-group.md#manag
263
263
264
264
To deploy resources in the target resource group, define those resources in the `resources` section of the template. The following template creates a storage account in the resource group that's specified in the **deployment** operation:
You can deploy to more than one resource group in a single ARM template. To target a resource group that's different from the one for the parent template, use a [nested or linked template](linked-templates.md). Within the deployment resource type, specify values for the subscription ID and resource group to which you want to deploy the nested template.
271
325
272
326
> [!NOTE]
273
-
> You can deploy to **800 resource groups** in a single deployment. Typically, this limitation means you can deploy to one resource group specified for the parent template, and up to 799 resource groups in nested or linked deployments. However, if your parent template contains only nested or linked templates and doesn't deploy any resources, then you can include up to 800 resource groups in nested or linked deployments.
327
+
> You can deploy to **800 resource groups** in a single deployment. Typically, this limitation means you can deploy to one resource group specified for the parent template and up to 799 resource groups in nested or linked deployments. However, if your parent template contains only nested or linked templates and doesn't deploy any resources, then you can include up to 800 resource groups in nested or linked deployments.
274
328
275
329
The following example deploys two storage accounts. The first storage account is deployed to the resource group specified in the deployment operation. The second storage account is deployed to the resource group specified in the `secondResourceGroup` and `secondSubscriptionID` parameters:
276
330
@@ -349,9 +403,9 @@ The following example deploys two storage accounts. The first storage account is
349
403
350
404
If you set `resourceGroup` to the name of a resource group that doesn't exist, the deployment fails.
351
405
352
-
To test the preceding template and see the results, use PowerShell or Azure CLI.
406
+
To test the preceding template and see the results, use PowerShell or the Azure CLI.
353
407
354
-
# [PowerShell](#tab/azure-powershell)
408
+
# [Azure PowerShell](#tab/azure-powershell)
355
409
356
410
To deploy two storage accounts to two resource groups in the **same subscription**, use:
0 commit comments