Skip to content

Commit 6f85e22

Browse files
committed
update
1 parent c04c5b5 commit 6f85e22

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

articles/azure-resource-manager/templates/cross-resource-group-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ ms.topic: conceptual
55
ms.date: 05/18/2020
66
---
77

8-
# Deploy Azure resources to more than one subscription or resource group
8+
# Deploy Azure resources across subscriptions or resource groups
99

10-
Resource Manager enables you to use nested templates to target more than one subscription and resource group.
10+
Resource Manager enables you to target more than one resource group in a single deployment. You use nested templates to specify resource groups that are different than the resource group in the deployment operation. The resource groups can exist in different subscriptions.
1111

1212
> [!NOTE]
13-
> 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 does not itself deploy any resources, then you can include up to 800 resource groups in nested or linked deployments.
13+
> 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 does not itself deploy any resources, then you can include up to 800 resource groups in nested or linked deployments.
1414
1515
## Specify subscription and resource group
1616

17-
To target a resource group that is different than the one for parent template, use a [nested or linked template](linked-templates.md). Within the `Microsoft.Resources/deployments` resource type, specify values for the `subscriptionId` and `resourceGroup` properties.
17+
To target a resource group that is different than the one for 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.
1818

19-
:::code language="json" source="~/resourcemanager-templates/azure-resource-manager/crosssubscription.json" range="38-43" highlight="2,5-6":::
19+
:::code language="json" source="~/resourcemanager-templates/azure-resource-manager/crosssubscription.json" range="38-43" highlight="5-6":::
2020

2121
If you don't specify the subscription ID or resource group, the subscription and resource group from the parent template are used. All the resource groups must exist before running the deployment.
2222

articles/azure-resource-manager/templates/deploy-to-subscription.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
title: Deploy resources to subscription
33
description: Describes how to create a resource group in an Azure Resource Manager template. It also shows how to deploy resources at the Azure subscription scope.
44
ms.topic: conceptual
5-
ms.date: 05/07/2020
5+
ms.date: 05/18/2020
66
---
77

88
# Create resource groups and resources at the subscription level
99

1010
To simplify the management of resources in your Azure subscription, you can define and assign [policies](../../governance/policy/overview.md) or [role-based access controls](../../role-based-access-control/overview.md) across the subscription. With subscription level templates, you declaratively apply policies and assign roles at the subscription. You can also create resource groups and deploy resources.
1111

12+
> [!NOTE]
13+
> You can deploy to up to 800 resource groups in a subscription level deployment.
14+
1215
To deploy templates at the subscription level, use Azure CLI, PowerShell, or REST API. The Azure portal doesn't support deployment in the subscription level.
1316

1417
## Supported resources

articles/azure-resource-manager/templates/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
href: deploy-to-management-group.md
237237
- name: Tenant
238238
href: deploy-to-tenant.md
239-
- name: Multiple resource groups or subscriptions
239+
- name: Across resource groups
240240
href: cross-resource-group-deployment.md
241241
- name: Provide parameters
242242
items:

0 commit comments

Comments
 (0)