You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -125,18 +124,6 @@ The output from the preceding example with the default values is:
125
124
| checkArrays | Bool | True |
126
125
| checkObjects | Bool | True |
127
126
128
-
To deploy this example template with Azure CLI, use:
129
-
130
-
```azurecli-interactive
131
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/equals.json
132
-
```
133
-
134
-
To deploy this example template with PowerShell, use:
The following [example template](https://github.com/Azure/azure-docs-json-samples/blob/master/azure-resource-manager/functions/not-equals.json) uses [not](template-functions-logical.md#not) with **equals**.
141
128
142
129
```json
@@ -160,19 +147,8 @@ The output from the preceding example is:
160
147
| ---- | ---- | ----- |
161
148
| checkNotEquals | Bool | True |
162
149
163
-
To deploy this example template with Azure CLI, use:
164
-
165
-
```azurecli-interactive
166
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/not-equals.json
167
-
```
168
-
169
-
To deploy this example template with PowerShell, use:
Checks whether the first value is greater than the second value.
@@ -236,19 +212,8 @@ The output from the preceding example with the default values is:
236
212
| checkInts | Bool | False |
237
213
| checkStrings | Bool | True |
238
214
239
-
To deploy this example template with Azure CLI, use:
240
-
241
-
```azurecli-interactive
242
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/greater.json
243
-
```
244
-
245
-
To deploy this example template with PowerShell, use:
Checks whether the first value is greater than or equal to the second value.
@@ -312,19 +277,8 @@ The output from the preceding example with the default values is:
312
277
| checkInts | Bool | False |
313
278
| checkStrings | Bool | True |
314
279
315
-
To deploy this example template with Azure CLI, use:
316
-
317
-
```azurecli-interactive
318
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/greaterorequals.json
319
-
```
320
-
321
-
To deploy this example template with PowerShell, use:
Checks whether the first value is less than the second value.
@@ -388,19 +342,8 @@ The output from the preceding example with the default values is:
388
342
| checkInts | Bool | True |
389
343
| checkStrings | Bool | False |
390
344
391
-
To deploy this example template with Azure CLI, use:
392
-
393
-
```azurecli-interactive
394
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/less.json
395
-
```
396
-
397
-
To deploy this example template with PowerShell, use:
Checks whether the first value is less than or equal to the second value.
@@ -464,21 +407,6 @@ The output from the preceding example with the default values is:
464
407
| checkInts | Bool | True |
465
408
| checkStrings | Bool | False |
466
409
467
-
To deploy this example template with Azure CLI, use:
468
-
469
-
```azurecli-interactive
470
-
az deployment group create -g functionexamplegroup --template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/azure-resource-manager/functions/lessorequals.json
471
-
```
472
-
473
-
To deploy this example template with PowerShell, use:
* For a description of the sections in an Azure Resource Manager template, see [Authoring Azure Resource Manager templates](template-syntax.md).
481
-
* To merge multiple templates, see [Using linked templates with Azure Resource Manager](linked-templates.md).
482
-
* 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).
483
-
* To see how to deploy the template you have created, see [Deploy an application with Azure Resource Manager template](deploy-powershell.md).
484
411
412
+
* For a description of the sections in an Azure Resource Manager template, see [Understand the structure and syntax of ARM templates](template-syntax.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-functions-date.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Template functions - date
3
3
description: Describes the functions to use in an Azure Resource Manager template to work with dates.
4
4
ms.topic: conceptual
5
-
ms.date: 04/22/2020
5
+
ms.date: 04/27/2020
6
6
---
7
7
# Date functions for ARM templates
8
8
@@ -235,4 +235,8 @@ The next example shows how to use a value from the function when setting a tag v
235
235
}
236
236
}
237
237
}
238
-
```
238
+
```
239
+
240
+
## Next steps
241
+
242
+
* For a description of the sections in an Azure Resource Manager template, see [Understand the structure and syntax of ARM templates](template-syntax.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-functions-logical.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Template functions - logical
3
3
description: Describes the functions to use in an Azure Resource Manager template to determine logical values.
4
4
ms.topic: conceptual
5
-
ms.date: 04/15/2019
5
+
ms.date: 04/27/2020
6
6
---
7
7
# Logical functions for ARM templates
8
8
@@ -289,6 +289,7 @@ The following [example template](https://github.com/Azure/azure-docs-json-sample
289
289
"value": "[not(equals(1, 2))]"
290
290
}
291
291
}
292
+
}
292
293
```
293
294
294
295
The output from the preceding example is:
@@ -351,8 +352,5 @@ The output from the preceding example is:
351
352
352
353
## Next steps
353
354
354
-
* For a description of the sections in an Azure Resource Manager template, see [Authoring Azure Resource Manager templates](template-syntax.md).
355
-
* To merge multiple templates, see [Using linked templates with Azure Resource Manager](linked-templates.md).
356
-
* 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).
357
-
* To see how to deploy the template you've created, see [Deploy an application with Azure Resource Manager template](deploy-powershell.md).
355
+
* For a description of the sections in an Azure Resource Manager template, see [Understand the structure and syntax of ARM templates](template-syntax.md).
0 commit comments