Skip to content

Commit ccad74b

Browse files
committedJun 12, 2018
revised azure cli
1 parent d6d8ecb commit ccad74b

6 files changed

+5
-8
lines changed
 

‎articles/azure-resource-manager/resource-group-template-deploy-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.author: tomfitz
1919
---
2020
# Deploy resources with Resource Manager templates and Azure CLI
2121

22-
This article explains how to use Azure CLI 2.0 with Resource Manager templates to deploy your resources to Azure. If you are not familiar with the concepts of deploying and managing your Azure solutions, see [Azure Resource Manager overview](resource-group-overview.md).
22+
This article explains how to use Azure CLI with Resource Manager templates to deploy your resources to Azure. If you are not familiar with the concepts of deploying and managing your Azure solutions, see [Azure Resource Manager overview](resource-group-overview.md).
2323

2424
The Resource Manager template you deploy can either be a local file on your machine, or an external file that is located in a repository like GitHub. The template you deploy in this article is available in the [Sample template](#sample-template) section, or as a [storage account template in GitHub](https://github.com/Azure/azure-quickstart-templates/blob/master/101-storage-account-create/azuredeploy.json).
2525

‎articles/azure-resource-manager/resource-manager-cross-resource-group-deployment.md

-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ The following example deploys two storage accounts - one in the resource group s
124124

125125
If you set `resourceGroup` to the name of a resource group that does not exist, the deployment fails.
126126

127-
To deploy the example template, use Azure PowerShell 4.0.0 or later, or Azure CLI 2.0.0 or later.
128-
129127
## Use the resourceGroup() and subscription() functions
130128

131129
For cross resource group deployments, the [resourceGroup()](resource-group-template-functions-resource.md#resourcegroup) and [subscription()](resource-group-template-functions-resource.md#subscription) functions resolve differently based on how you specify the nested template.

‎articles/azure-resource-manager/resource-manager-export-template.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ The deployment may take a minute. After the deployment finishes, your subscripti
6161

6262
1. **Template** - The template that defines the infrastructure for your solution. When you created the storage account through the portal, Resource Manager used a template to deploy it and saved that template for future reference.
6363
2. **Parameters** - A parameter file that you can use to pass in values during deployment. It contains the values that you provided during the first deployment. You can change any of these values when you redeploy the template.
64-
3. **CLI** - An Azure command-line-interface (CLI) script file that you can use to deploy the template.
65-
3. **CLI 2.0** - An Azure command-line-interface (CLI) script file that you can use to deploy the template.
64+
3. **CLI** - An Azure CLI script file that you can use to deploy the template.
6665
4. **PowerShell** - An Azure PowerShell script file that you can use to deploy the template.
6766
5. **.NET** - A .NET class that you can use to deploy the template.
6867
6. **Ruby** - A Ruby class that you can use to deploy the template.

‎articles/azure-resource-manager/resource-manager-policy-requestdisallowedbypolicy-error.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ In PowerShell, provide that policy identifier as the `Id` parameter to retrieve
4747

4848
### Azure CLI
4949

50-
In Azure CLI 2.0, provide the name of the policy definition:
50+
In Azure CLI, provide the name of the policy definition:
5151

5252
```azurecli
5353
az policy definition show --name regionPolicyAssignment

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The following example uses PowerShell to get the locations for the `Microsoft.We
164164
((Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Web).ResourceTypes | Where-Object ResourceTypeName -eq sites).Locations
165165
```
166166

167-
The following example uses Azure CLI 2.0 to get the locations for the `Microsoft.Web\sites` resource type:
167+
The following example uses Azure CLI to get the locations for the `Microsoft.Web\sites` resource type:
168168

169169
```azurecli
170170
az provider show -n Microsoft.Web --query "resourceTypes[?resourceType=='sites'].locations"

‎articles/azure-resource-manager/xplat-cli-azure-resource-manager.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This article does not show how to deploy a Resource Manager template to your sub
3131

3232
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3333

34-
To install and use the CLI locally, see [Install Azure CLI 2.0](/cli/azure/install-azure-cli).
34+
To install and use the CLI locally, see [Install Azure CLI](/cli/azure/install-azure-cli).
3535

3636
## Set subscription
3737

0 commit comments

Comments
 (0)