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
Copy file name to clipboardExpand all lines: articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-cli.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The Azure Cloud Shell is a free interactive shell that you can use to run the st
25
25
26
26
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.
27
27
28
-
## Define Environment Variables
28
+
## Define environment variables
29
29
30
30
Define environment variables as follows.
31
31
@@ -71,11 +71,11 @@ Results:
71
71
}
72
72
```
73
73
74
-
## Create Network Resources
74
+
## Create network resources
75
75
76
76
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.
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.
125
125
@@ -842,6 +842,6 @@ az network public-ip show --resource-group $MY_RESOURCE_GROUP_NAME --name $MY_AP
842
842
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.
843
843
844
844
## 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)
846
846
-[Learn about Virtual Machine Scale Sets.](overview.md)
847
847
-[Automatically scale a Virtual Machine Scale Set with the Azure CLI](tutorial-autoscale-cli.md)
0 commit comments