Skip to content

Commit b55192a

Browse files
Update quickstart-create-cli.md
1 parent 5dd94a7 commit b55192a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/hdinsight-aks/quickstart-create-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The Azure Cloud Shell is an interactive shell that you can use to run the steps
3838
The first step is to define the environment variables. Environment variables are commonly used in Linux to centralize configuration data to improve consistency and maintainability of the system. Create the following environment variables to specify the names of resources that you create later in this tutorial:
3939

4040
```bash
41-
export RecourceGroup="HDIonAKSCLI"
41+
export ResourceGroup="HDIonAKSCLI"
4242
export Region=EastUS
4343
export HDIonAKSClusterPoolName="contosopool"
4444
export NodeType="Standard_E4s_v3"
@@ -51,10 +51,10 @@ In order to run commands in Azure using the CLI, you need to log in first. Log i
5151

5252
## Create a resource group
5353

54-
A resource group is a container for related resources. All resources must be placed in a resource group. The [az group create](/cli/azure/group) command creates a resource group with the previously defined `$MY_RESOURCE_GROUP_NAME` and `$Region` parameters.
54+
A resource group is a container for related resources. All resources must be placed in a resource group. The [az group create](/cli/azure/group) command creates a resource group with the previously defined `$ResourceGroup` and `$Region` parameters.
5555

5656
```bash
57-
az group create --name $RecourceGroup --location $Region
57+
az group create --name $ResourceGroup --location $Region
5858
```
5959

6060
Output:
@@ -95,7 +95,7 @@ az hdinsight-on-aks clusterpool create --cluster-pool-name
9595
```
9696
Here's an example:
9797
```bash
98-
az hdinsight-on-aks clusterpool create --resource-group $RecourceGroup --cluster-pool-name $HDIonAKSClusterPoolName --location $Region --workernode-size $NodeType --cluster-pool-version $ClusterVersion
98+
az hdinsight-on-aks clusterpool create --resource-group $ResourceGroup --cluster-pool-name $HDIonAKSClusterPoolName --location $Region --workernode-size $NodeType --cluster-pool-version $ClusterVersion
9999
```
100100

101101
It takes a few minutes to create the HDInsight on AKS cluster pool. The following example output shows the created operation was successful.

0 commit comments

Comments
 (0)