Skip to content

Commit 58087bd

Browse files
author
Jill Grant
authored
Apply suggestions from code review
Acrolinx and heading case fixes
1 parent 97310f3 commit 58087bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The Azure Cloud Shell is a free interactive shell that you can use to run the st
2525

2626
To open the Cloud Shell, select **Open Cloud Shell** from the upper right corner of a code block. You can also launch Cloud Shell in a separate browser tab by going to [https://shell.azure.com/cli](https://shell.azure.com/cli). Select **Copy** to copy the blocks of code, paste it into the Cloud Shell, and press enter to run it.
2727

28-
## Define Environment Variables
28+
## Define environment variables
2929

3030
Define environment variables as follows.
3131

@@ -71,11 +71,11 @@ Results:
7171
}
7272
```
7373

74-
## Create Network Resources
74+
## Create network resources
7575

7676
Now you'll create network resources. In this step you're going to create a virtual network, one subnet 1 for Application Gateway, and one subnet for VMs. You also need to have a public IP to attach your Application Gateway to reach your web application from the internet.
7777

78-
#### Create Virtual Network and Subnet
78+
#### Create virtual network and subnet
7979

8080
```bash
8181
az network vnet create --name $MY_VNET_NAME --resource-group $MY_RESOURCE_GROUP_NAME --location $REGION --address-prefix $MY_VNET_PREFIX --subnet-name $MY_VM_SN_NAME --subnet-prefix $MY_VM_SN_PREFIX -o JSON
@@ -119,7 +119,7 @@ Results:
119119
}
120120
```
121121

122-
### Create Application Gateway Resources
122+
### Create Application Gateway resources
123123

124124
Azure Application Gateway requires a dedicated subnet within your virtual network. The following command creates a subnet named $MY_APPGW_SN_NAME with a specified address prefix named $MY_APPGW_SN_PREFIX in your virtual network $MY_VNET_NAME.
125125

@@ -842,6 +842,6 @@ az network public-ip show --resource-group $MY_RESOURCE_GROUP_NAME --name $MY_AP
842842
To avoid Azure charges, you should clean up unneeded resources. When you no longer need your scale set and other resources, delete the resource group and all its resources with [az group delete](/cli/azure/group). The `--no-wait` parameter returns control to the prompt without waiting for the operation to complete. The `--yes` parameter confirms that you wish to delete the resources without another prompt to do so. This tutorial cleans up resources for you.
843843

844844
## Next steps
845-
- [Learn how to create a scale set in the Azure Portal.](flexible-virtual-machine-scale-sets-portal.md)
845+
- [Learn how to create a scale set in the Azure portal.](flexible-virtual-machine-scale-sets-portal.md)
846846
- [Learn about Virtual Machine Scale Sets.](overview.md)
847847
- [Automatically scale a Virtual Machine Scale Set with the Azure CLI](tutorial-autoscale-cli.md)

0 commit comments

Comments
 (0)