Skip to content

Commit 162f7bb

Browse files
committed
incorporate comments
1 parent ec78f7b commit 162f7bb

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

articles/azure-resource-manager/templates/copy-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy multiple instances of resources
33
description: Use copy operation and arrays in an Azure Resource Manager template (ARM template) to deploy resource type many times.
44
ms.topic: conceptual
55
ms.custom: devx-track-arm-template
6-
ms.date: 08/22/2023
6+
ms.date: 08/30/2023
77
---
88

99
# Resource iteration in ARM templates
@@ -158,7 +158,7 @@ If you want to return values from the deployed resources, you can use [copy in t
158158

159159
### Use symbolic name
160160

161-
[Symbolic name](./resource-declaration.md#use-symbolic-name) can be assigned to resource copy loops. The loop index is zero-based. In the following example, `myStorages[1]` references the second resource in the resource loop.
161+
[Symbolic name](./resource-declaration.md#use-symbolic-name) will be assigned to resource copy loops. The loop index is zero-based. In the following example, `myStorages[1]` references the second resource in the resource loop.
162162

163163
```json
164164
{

articles/azure-resource-manager/templates/definitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article describes how to create and use definitions in your Azure Resource
1717
1818
## Minimal declaration
1919

20-
At a minimum, every type definition needs a name and type.
20+
At a minimum, every type definition needs a name and either a `type` or a [`$ref`](#use-definition).
2121

2222
```json
2323
"definitions": {

articles/azure-resource-manager/templates/linked-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The following example deploys a storage account through a nested template.
9494
}
9595
```
9696

97-
[Nested resources](./child-resource-name-type.md#within-parent-resource) can't use [symbolic name](./resource-declaration.md#use-symbolic-name). In the following template, the nested storage account resource cannot use symbolic name:
97+
[Nested resources](./child-resource-name-type.md#within-parent-resource) can't be used in a [symbolic name](./resource-declaration.md#use-symbolic-name) template. In the following template, the nested storage account resource cannot use symbolic name:
9898

9999
```json
100100
{

articles/azure-resource-manager/templates/resource-declaration.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ ms.date: 09/28/2022
1010

1111
To deploy a resource through an Azure Resource Manager template (ARM template), you add a resource declaration. Use the `resources` array in a JSON template.
1212

13-
[languageVersion 2.0](./syntax.md#languageversion-20) makes a list of enhancements to ARM JSON templates, such as use symbolic names for resources and change the resource definition from an array to an object. The majority of the samples shown in this article still use `resources` array. For languageVersion 2.0 specific information, see [Use symbolic name](#use-symbolic-name).
13+
[languageVersion 2.0](./syntax.md#languageversion-20) makes a list of enhancements to ARM JSON templates, such as changing the resources declaration from an array to an object. The majority of the samples shown in this article still use `resources` array. For languageVersion 2.0 specific information, see [Use symbolic name](#use-symbolic-name).
14+
15+
16+
17+
1418

1519
[!INCLUDE [VSCode ARM Tools extension doesn't support languageVersion 2.0](../../../includes/resource-manager-vscode-language-version-20.md)]
1620

0 commit comments

Comments
 (0)