Skip to content

Commit 62047cf

Browse files
committed
update
1 parent 6f85e22 commit 62047cf

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
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
@@ -7,22 +7,22 @@ ms.date: 05/18/2020
77

88
# Deploy Azure resources across subscriptions or resource groups
99

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.
10+
Resource Manager enables you to deploy to 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 deployment resource type, specify values for the subscription ID and resource group.
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 that you want the nested template to deploy to.
1818

1919
:::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

23-
The account you use to deploy the template must have permissions to deploy to the specified subscription ID. If the specified subscription exists in a different Azure Active Directory tenant, you must [add guest users from another directory](../../active-directory/active-directory-b2b-what-is-azure-ad-b2b.md).
23+
The account that deploys the template must have permission to deploy to the specified subscription ID. If the specified subscription exists in a different Azure Active Directory tenant, you must [add guest users from another directory](../../active-directory/active-directory-b2b-what-is-azure-ad-b2b.md).
2424

25-
The following example deploys two storage accounts. The first storage account is deployed to the resource group specified during deployment. The second storage account is deployed to the resource group specified in the `secondResourceGroup` and `secondSubscriptionID` parameters:
25+
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:
2626

2727
:::code language="json" source="~/resourcemanager-templates/azure-resource-manager/crosssubscription.json":::
2828

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 05/18/2020
77

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

10-
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.
10+
To simplify the management of resources, you can deploy resources at the level of your Azure subscription. For example, you can deploy [policies](../../governance/policy/overview.md) and [role-based access controls](../../role-based-access-control/overview.md) to your subscription. These policies and role-based access controls are applied across your subscription. You can also create resource groups and deploy resources to those resource groups.
1111

1212
> [!NOTE]
1313
> You can deploy to up to 800 resource groups in a subscription level deployment.
@@ -128,7 +128,7 @@ The following template creates an empty resource group.
128128
"resources": [
129129
{
130130
"type": "Microsoft.Resources/resourceGroups",
131-
"apiVersion": "2018-05-01",
131+
"apiVersion": "2019-10-01",
132132
"name": "[parameters('rgName')]",
133133
"location": "[parameters('rgLocation')]",
134134
"properties": {}
@@ -159,7 +159,7 @@ Use the [copy element](copy-resources.md) with resource groups to create more th
159159
"resources": [
160160
{
161161
"type": "Microsoft.Resources/resourceGroups",
162-
"apiVersion": "2018-05-01",
162+
"apiVersion": "2019-10-01",
163163
"location": "[parameters('rgLocation')]",
164164
"name": "[concat(parameters('rgNamePrefix'), copyIndex())]",
165165
"copy": {
@@ -177,7 +177,7 @@ For information about resource iteration, see [Deploy more than one instance of
177177

178178
## Resource group and resources
179179

180-
To create the resource group and deploy resources to it, use a nested template. The nested template defines the resources to deploy to the resource group. Set the nested template as dependent on the resource group to make sure the resource group exists before deploying the resources.
180+
To create the resource group and deploy resources to it, use a nested template. The nested template defines the resources to deploy to the resource group. Set the nested template as dependent on the resource group to make sure the resource group exists before deploying the resources. You can deploy to up to 800 resource groups.
181181

182182
The following example creates a resource group, and deploys a storage account to the resource group.
183183

@@ -203,14 +203,14 @@ The following example creates a resource group, and deploys a storage account to
203203
"resources": [
204204
{
205205
"type": "Microsoft.Resources/resourceGroups",
206-
"apiVersion": "2018-05-01",
206+
"apiVersion": "2019-10-01",
207207
"location": "[parameters('rgLocation')]",
208208
"name": "[parameters('rgName')]",
209209
"properties": {}
210210
},
211211
{
212212
"type": "Microsoft.Resources/deployments",
213-
"apiVersion": "2018-05-01",
213+
"apiVersion": "2019-10-01",
214214
"name": "storageDeployment",
215215
"resourceGroup": "[parameters('rgName')]",
216216
"dependsOn": [
@@ -226,7 +226,7 @@ The following example creates a resource group, and deploys a storage account to
226226
"resources": [
227227
{
228228
"type": "Microsoft.Storage/storageAccounts",
229-
"apiVersion": "2017-10-01",
229+
"apiVersion": "2019-06-01",
230230
"name": "[variables('storageName')]",
231231
"location": "[parameters('rgLocation')]",
232232
"sku": {

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: Across resource groups
239+
- name: Cross resource group
240240
href: cross-resource-group-deployment.md
241241
- name: Provide parameters
242242
items:

0 commit comments

Comments
 (0)