Skip to content

Commit 5c23bb5

Browse files
authored
Merge pull request #109386 from tfitzmac/0327tutorial
add note about latest CLI version
2 parents b7a5230 + 7e5f41e commit 5c23bb5

10 files changed

+32
-12
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - add template functions
33
description: Add template functions to your Azure Resource Manager template to construct values.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -55,6 +55,8 @@ New-AzResourceGroupDeployment `
5555

5656
# [Azure CLI](#tab/azure-cli)
5757

58+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
59+
5860
```azurecli
5961
az deployment group create \
6062
--name addlocationparameter \

articles/azure-resource-manager/templates/template-tutorial-add-outputs.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - add outputs to template
33
description: Add outputs to your Azure Resource Manager template to simplify the syntax.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -60,6 +60,8 @@ New-AzResourceGroupDeployment `
6060

6161
# [Azure CLI](#tab/azure-cli)
6262

63+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
64+
6365
```azurecli
6466
az deployment group create \
6567
--name addoutputs \

articles/azure-resource-manager/templates/template-tutorial-add-parameters.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - add parameters to template
33
description: Add parameters to your Azure Resource Manager template to make it reusable.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -51,6 +51,8 @@ New-AzResourceGroupDeployment `
5151

5252
# [Azure CLI](#tab/azure-cli)
5353

54+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
55+
5456
```azurecli
5557
az deployment group create \
5658
--name addnameparameter \

articles/azure-resource-manager/templates/template-tutorial-add-resource.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - Add resource to template
33
description: Describes the steps to create your first Azure Resource Manager template. You learn about the template file syntax and how to deploy a storage account.
44
author: mumian
5-
ms.date: 02/24/2020
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -67,6 +67,8 @@ New-AzResourceGroupDeployment `
6767

6868
# [Azure CLI](#tab/azure-cli)
6969

70+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
71+
7072
```azurecli
7173
az deployment group create \
7274
--name addstorage \

articles/azure-resource-manager/templates/template-tutorial-add-tags.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - add tags to resources in template
33
description: Add tags to resources that you deploy in your Azure Resource Manager template. Tags let you logically organize resources.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -53,6 +53,8 @@ New-AzResourceGroupDeployment `
5353

5454
# [Azure CLI](#tab/azure-cli)
5555

56+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
57+
5658
```azurecli
5759
az deployment group create \
5860
--name addtags \

articles/azure-resource-manager/templates/template-tutorial-add-variables.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - add variable to template
33
description: Add variables to your Azure Resource Manager template to simplify the syntax.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -64,6 +64,8 @@ New-AzResourceGroupDeployment `
6464

6565
# [Azure CLI](#tab/azure-cli)
6666

67+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
68+
6769
```azurecli
6870
az deployment group create \
6971
--name addnamevariable \

articles/azure-resource-manager/templates/template-tutorial-create-first-template.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - Create & deploy template
33
description: Create your first Azure Resource Manager template. In the tutorial, you learn about the template file syntax and how to deploy a storage account.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88

@@ -30,7 +30,7 @@ Templates are JSON files. To create templates, you need a good JSON editor. We r
3030

3131
### Command-line deployment
3232

33-
You also need either Azure PowerShell or Azure CLI to deploy the template. For the installation instructions, see:
33+
You also need either Azure PowerShell or Azure CLI to deploy the template. If you use Azure CLI, you must have the latest version. For the installation instructions, see:
3434

3535
- [Install Azure PowerShell](/powershell/azure/install-az-ps)
3636
- [Install Azure CLI on Windows](/cli/azure/install-azure-cli-windows)
@@ -128,6 +128,8 @@ New-AzResourceGroupDeployment `
128128

129129
# [Azure CLI](#tab/azure-cli)
130130

131+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
132+
131133
```azurecli
132134
templateFile="{provide-the-path-to-the-template-file}"
133135
az deployment group create \

articles/azure-resource-manager/templates/template-tutorial-export-template.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - Export template from the Azure portal
33
description: Learn how to use an exported template to complete your template development.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -29,7 +29,7 @@ This template works well for deploying storage accounts, but you might want to a
2929

3030
1. Sign in to the [Azure portal](https://portal.azure.com).
3131
1. Select **Create a resource**.
32-
1. In **Search the Marketplace**, enter **App Service plan**, and then select **App Service plan**. Dont select **App Service plan (classic)**
32+
1. In **Search the Marketplace**, enter **App Service plan**, and then select **App Service plan**. Don't select **App Service plan (classic)**
3333
1. Select **Create**.
3434
1. Enter:
3535

@@ -92,6 +92,8 @@ New-AzResourceGroupDeployment `
9292

9393
# [Azure CLI](#tab/azure-cli)
9494

95+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
96+
9597
```azurecli
9698
az deployment group create \
9799
--name addappserviceplan \

articles/azure-resource-manager/templates/template-tutorial-quickstart-template.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - Use quickstart templates
33
description: Learn how to use Azure Quickstart templates to complete your template development.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -72,6 +72,8 @@ New-AzResourceGroupDeployment `
7272

7373
# [Azure CLI](#tab/azure-cli)
7474

75+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
76+
7577
```azurecli
7678
az deployment group create \
7779
--name addwebapp \

articles/azure-resource-manager/templates/template-tutorial-use-parameter-file.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - use parameter file to deploy template
33
description: Use parameter files that contain the values to use for deploying your Azure Resource Manager template.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -66,6 +66,8 @@ New-AzResourceGroupDeployment `
6666

6767
# [Azure CLI](#tab/azure-cli)
6868

69+
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
70+
6971
```azurecli
7072
templateFile="{path-to-the-template-file}"
7173
devParameterFile="{path-to-azuredeploy.parameters.dev.json}"

0 commit comments

Comments
 (0)