Skip to content

Commit 1196169

Browse files
authored
Merge pull request #129964 from tfitzmac/0915scope
review scope deploy
2 parents f0f17b3 + d0ea714 commit 1196169

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

articles/azure-resource-manager/templates/deploy-to-management-group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Deploy resources to management group
33
description: Describes how to deploy resources at the management group scope in an Azure Resource Manager template.
44
ms.topic: conceptual
5-
ms.date: 09/04/2020
5+
ms.date: 09/15/2020
66
---
77

88
# Create resources at the management group level
@@ -60,7 +60,7 @@ https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json
6060

6161
The commands for management group deployments are different than the commands for resource group deployments.
6262

63-
For Azure CLI, use [az deployment mg create](/cli/azure/deployment/mg?view=azure-cli-latest#az-deployment-mg-create):
63+
For Azure CLI, use [az deployment mg create](/cli/azure/deployment/mg#az-deployment-mg-create):
6464

6565
```azurecli-interactive
6666
az deployment mg create \

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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: 09/04/2020
5+
ms.date: 09/15/2020
66
---
77

88
# Create resource groups and resources at the subscription level
@@ -77,7 +77,7 @@ https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json
7777

7878
The commands for subscription-level deployments are different than the commands for resource group deployments.
7979

80-
For Azure CLI, use [az deployment sub create](/cli/azure/deployment/sub?view=azure-cli-latest#az-deployment-sub-create). The following example deploys a template to create a resource group:
80+
For Azure CLI, use [az deployment sub create](/cli/azure/deployment/sub#az-deployment-sub-create). The following example deploys a template to create a resource group:
8181

8282
```azurecli-interactive
8383
az deployment sub create \
@@ -157,9 +157,7 @@ For subscription-level deployments, there are some important considerations when
157157

158158
* The [resourceGroup()](template-functions-resource.md#resourcegroup) function is **not** supported.
159159
* The [reference()](template-functions-resource.md#reference) and [list()](template-functions-resource.md#list) functions are supported.
160-
* Don't use [resourceId()](template-functions-resource.md#resourceid) to get the resource ID for resources that are deployed at subscription level.
161-
162-
Instead, use the [subscriptionResourceId()](template-functions-resource.md#subscriptionresourceid) function.
160+
* Don't use [resourceId()](template-functions-resource.md#resourceid) to get the resource ID for resources that are deployed at subscription level. Instead, use the [subscriptionResourceId()](template-functions-resource.md#subscriptionresourceid) function.
163161

164162
For example, to get the resource ID for a policy definition that is deployed to a subscription, use:
165163

0 commit comments

Comments
 (0)