Skip to content

Commit 74586b7

Browse files
authored
Merge pull request #108745 from tfitzmac/0323arm6
add arm term
2 parents 7af88dc + 244f02d commit 74586b7

8 files changed

+122
-122
lines changed

articles/azure-resource-manager/templates/template-functions-array.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 07/31/2019
66
---
7-
# Array and object functions for Azure Resource Manager templates
7+
# Array and object functions for ARM templates
88

9-
Resource Manager provides several functions for working with arrays and objects.
9+
Resource Manager provides several functions for working with arrays and objects in your Azure Resource Manager (ARM) template.
1010

1111
* [array](#array)
1212
* [coalesce](#coalesce)

articles/azure-resource-manager/templates/template-functions-comparison.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 09/05/2017
66
---
7-
# Comparison functions for Azure Resource Manager templates
7+
# Comparison functions for ARM templates
88

9-
Resource Manager provides several functions for making comparisons in your templates.
9+
Resource Manager provides several functions for making comparisons in your Azure Resource Manager (ARM) templates.
1010

1111
* [equals](#equals)
1212
* [greater](#greater)

articles/azure-resource-manager/templates/template-functions-deployment.md

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 11/27/2019
66
---
7-
# Deployment functions for Azure Resource Manager templates
7+
# Deployment functions for ARM templates
88

9-
Resource Manager provides the following functions for getting values related to the current deployment:
9+
Resource Manager provides the following functions for getting values related to the current deployment of your Azure Resource Manager (ARM) template:
1010

1111
* [deployment](#deployment)
1212
* [environment](#environment)
@@ -267,13 +267,13 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
267267

268268
```json
269269
{
270-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
271-
"contentVersion": "1.0.0.0",
272-
"parameters": {
273-
"stringParameter": {
274-
"type" : "string",
275-
"defaultValue": "option 1"
276-
},
270+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
271+
"contentVersion": "1.0.0.0",
272+
"parameters": {
273+
"stringParameter": {
274+
"type" : "string",
275+
"defaultValue": "option 1"
276+
},
277277
"intParameter": {
278278
"type": "int",
279279
"defaultValue": 1
@@ -290,31 +290,31 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
290290
"type": "string",
291291
"defaultValue": "[parameters('stringParameter')]"
292292
}
293-
},
294-
"variables": {},
295-
"resources": [],
296-
"outputs": {
297-
"stringOutput": {
298-
"value": "[parameters('stringParameter')]",
299-
"type" : "string"
300-
},
293+
},
294+
"variables": {},
295+
"resources": [],
296+
"outputs": {
297+
"stringOutput": {
298+
"value": "[parameters('stringParameter')]",
299+
"type" : "string"
300+
},
301301
"intOutput": {
302-
"value": "[parameters('intParameter')]",
303-
"type" : "int"
304-
},
302+
"value": "[parameters('intParameter')]",
303+
"type" : "int"
304+
},
305305
"objectOutput": {
306-
"value": "[parameters('objectParameter')]",
307-
"type" : "object"
308-
},
306+
"value": "[parameters('objectParameter')]",
307+
"type" : "object"
308+
},
309309
"arrayOutput": {
310-
"value": "[parameters('arrayParameter')]",
311-
"type" : "array"
312-
},
310+
"value": "[parameters('arrayParameter')]",
311+
"type" : "array"
312+
},
313313
"crossOutput": {
314-
"value": "[parameters('crossParameter')]",
315-
"type" : "string"
316-
}
317-
}
314+
"value": "[parameters('crossParameter')]",
315+
"type" : "string"
316+
}
317+
}
318318
}
319319
```
320320

@@ -376,37 +376,37 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
376376

377377
```json
378378
{
379-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
380-
"contentVersion": "1.0.0.0",
381-
"parameters": {},
382-
"variables": {
383-
"var1": "myVariable",
384-
"var2": [ 1,2,3,4 ],
385-
"var3": "[ variables('var1') ]",
386-
"var4": {
387-
"property1": "value1",
388-
"property2": "value2"
389-
}
390-
},
391-
"resources": [],
392-
"outputs": {
393-
"exampleOutput1": {
394-
"value": "[variables('var1')]",
395-
"type" : "string"
396-
},
397-
"exampleOutput2": {
398-
"value": "[variables('var2')]",
399-
"type" : "array"
400-
},
401-
"exampleOutput3": {
402-
"value": "[variables('var3')]",
403-
"type" : "string"
404-
},
405-
"exampleOutput4": {
406-
"value": "[variables('var4')]",
407-
"type" : "object"
408-
}
409-
}
379+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
380+
"contentVersion": "1.0.0.0",
381+
"parameters": {},
382+
"variables": {
383+
"var1": "myVariable",
384+
"var2": [ 1,2,3,4 ],
385+
"var3": "[ variables('var1') ]",
386+
"var4": {
387+
"property1": "value1",
388+
"property2": "value2"
389+
}
390+
},
391+
"resources": [],
392+
"outputs": {
393+
"exampleOutput1": {
394+
"value": "[variables('var1')]",
395+
"type" : "string"
396+
},
397+
"exampleOutput2": {
398+
"value": "[variables('var2')]",
399+
"type" : "array"
400+
},
401+
"exampleOutput3": {
402+
"value": "[variables('var3')]",
403+
"type" : "string"
404+
},
405+
"exampleOutput4": {
406+
"value": "[variables('var4')]",
407+
"type" : "object"
408+
}
409+
}
410410
}
411411
```
412412

articles/azure-resource-manager/templates/template-functions-logical.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 04/15/2019
66
---
7-
# Logical functions for Azure Resource Manager templates
7+
# Logical functions for ARM templates
88

9-
Resource Manager provides several functions for making comparisons in your templates.
9+
Resource Manager provides several functions for making comparisons in your Azure Resource Manager (ARM) templates.
1010

1111
* [and](#and)
1212
* [bool](#bool)

articles/azure-resource-manager/templates/template-functions-numeric.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 11/08/2017
66
---
7-
# Numeric functions for Azure Resource Manager templates
7+
# Numeric functions for ARM templates
88

9-
Resource Manager provides the following functions for working with integers:
9+
Resource Manager provides the following functions for working with integers in your Azure Resource Manager (ARM) template:
1010

1111
* [add](#add)
1212
* [copyIndex](#copyindex)

articles/azure-resource-manager/templates/template-functions-resource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 02/10/2020
66
---
7-
# Resource functions for Azure Resource Manager templates
7+
# Resource functions for ARM templates
88

9-
Resource Manager provides the following functions for getting resource values:
9+
Resource Manager provides the following functions for getting resource values in your Azure Resource Manager (ARM) template:
1010

1111
* [extensionResourceId](#extensionresourceid)
1212
* [list*](#list)

articles/azure-resource-manager/templates/template-functions-string.md

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 07/31/2019
66
---
7-
# String functions for Azure Resource Manager templates
7+
# String functions for ARM templates
88

9-
Resource Manager provides the following functions for working with strings:
9+
Resource Manager provides the following functions for working with strings in your Azure Resource Manager (ARM) templates:
1010

1111
* [base64](#base64)
1212
* [base64ToJson](#base64tojson)
@@ -1580,21 +1580,21 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
15801580

15811581
```json
15821582
{
1583-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1584-
"contentVersion": "1.0.0.0",
1585-
"parameters": {
1586-
"testString": {
1587-
"type": "string",
1588-
"defaultValue": "one two three"
1589-
}
1590-
},
1591-
"resources": [],
1592-
"outputs": {
1593-
"substringOutput": {
1594-
"value": "[substring(parameters('testString'), 4, 3)]",
1595-
"type": "string"
1596-
}
1597-
}
1583+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1584+
"contentVersion": "1.0.0.0",
1585+
"parameters": {
1586+
"testString": {
1587+
"type": "string",
1588+
"defaultValue": "one two three"
1589+
}
1590+
},
1591+
"resources": [],
1592+
"outputs": {
1593+
"substringOutput": {
1594+
"value": "[substring(parameters('testString'), 4, 3)]",
1595+
"type": "string"
1596+
}
1597+
}
15981598
}
15991599
```
16001600

@@ -1694,25 +1694,25 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
16941694

16951695
```json
16961696
{
1697-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1698-
"contentVersion": "1.0.0.0",
1699-
"parameters": {
1700-
"testString": {
1701-
"type": "string",
1702-
"defaultValue": "One Two Three"
1703-
}
1704-
},
1705-
"resources": [],
1706-
"outputs": {
1707-
"toLowerOutput": {
1708-
"value": "[toLower(parameters('testString'))]",
1709-
"type": "string"
1710-
},
1697+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1698+
"contentVersion": "1.0.0.0",
1699+
"parameters": {
1700+
"testString": {
1701+
"type": "string",
1702+
"defaultValue": "One Two Three"
1703+
}
1704+
},
1705+
"resources": [],
1706+
"outputs": {
1707+
"toLowerOutput": {
1708+
"value": "[toLower(parameters('testString'))]",
1709+
"type": "string"
1710+
},
17111711
"toUpperOutput": {
17121712
"type": "string",
17131713
"value": "[toUpper(parameters('testString'))]"
17141714
}
1715-
}
1715+
}
17161716
}
17171717
```
17181718

@@ -1745,25 +1745,25 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
17451745

17461746
```json
17471747
{
1748-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1749-
"contentVersion": "1.0.0.0",
1750-
"parameters": {
1751-
"testString": {
1752-
"type": "string",
1753-
"defaultValue": "One Two Three"
1754-
}
1755-
},
1756-
"resources": [],
1757-
"outputs": {
1758-
"toLowerOutput": {
1759-
"value": "[toLower(parameters('testString'))]",
1760-
"type": "string"
1761-
},
1748+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
1749+
"contentVersion": "1.0.0.0",
1750+
"parameters": {
1751+
"testString": {
1752+
"type": "string",
1753+
"defaultValue": "One Two Three"
1754+
}
1755+
},
1756+
"resources": [],
1757+
"outputs": {
1758+
"toLowerOutput": {
1759+
"value": "[toLower(parameters('testString'))]",
1760+
"type": "string"
1761+
},
17621762
"toUpperOutput": {
17631763
"type": "string",
17641764
"value": "[toUpper(parameters('testString'))]"
17651765
}
1766-
}
1766+
}
17671767
}
17681768
```
17691769

articles/azure-resource-manager/templates/template-functions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Describes the functions to use in an Azure Resource Manager templat
44
ms.topic: conceptual
55
ms.date: 02/13/2020
66
---
7-
# Azure Resource Manager template functions
7+
# ARM template functions
88

9-
This article describes all the functions you can use in an Azure Resource Manager template. For information about using functions in your template, see [template syntax](template-expressions.md).
9+
This article describes all the functions you can use in an Azure Resource Manager (ARM) template. For information about using functions in your template, see [template syntax](template-expressions.md).
1010

1111
To create your own functions, see [User-defined functions](template-syntax.md#functions).
1212

@@ -222,7 +222,7 @@ Resource Manager provides the following functions for working with strings:
222222

223223
## Next steps
224224

225-
* For a description of the sections in an Azure Resource Manager template, see [Authoring Azure Resource Manager templates](template-syntax.md)
225+
* For a description of the sections in an ARM template, see [Authoring ARM templates](template-syntax.md)
226226
* To merge multiple templates, see [Using linked templates with Azure Resource Manager](linked-templates.md)
227227
* To iterate a specified number of times when creating a type of resource, see [Create multiple instances of resources in Azure Resource Manager](copy-resources.md).
228-
* To see how to deploy the template you've created, see [Deploy an application with Azure Resource Manager template](deploy-powershell.md)
228+
* To see how to deploy the template you've created, see [Deploy an application with ARM templates](deploy-powershell.md)

0 commit comments

Comments
 (0)