Skip to content

Commit a412f0b

Browse files
authored
Update tutorial-manage-vm.md
1 parent 2b03504 commit a412f0b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-machines/linux/tutorial-manage-vm.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ If you choose to install and use the CLI locally, this tutorial requires that yo
3333

3434
Create a resource group with the [az group create](/cli/azure/group) command.
3535

36-
An Azure resource group is a logical container into which Azure resources are deployed and managed. A resource group must be created before a virtual machine. In this example, a resource group named *myResourceGroupVM* is created in the *eastus3* region.
36+
An Azure resource group is a logical container into which Azure resources are deployed and managed. A resource group must be created before a virtual machine. In this example, a resource group named *myResourceGroupVM* is created in the *eastus2* region.
3737

3838

3939
```azurecli-interactive
40-
az group create --name myResourceGroupVM --location eastus3
40+
az group create --name myResourceGroupVM --location eastus2
4141
```
4242

4343
The resource group is specified when creating or modifying a VM, which can be seen throughout this tutorial.
@@ -63,7 +63,7 @@ It may take a few minutes to create the VM. Once the VM has been created, the Az
6363
{
6464
"fqdns": "",
6565
"id": "/subscriptions/d5b9d4b7-6fc1-0000-0000-000000000000/resourceGroups/myResourceGroupVM/providers/Microsoft.Compute/virtualMachines/myVM",
66-
"location": "eastus3",
66+
"location": "eastus2",
6767
"macAddress": "00-0D-3A-23-9A-49",
6868
"powerState": "VM running",
6969
"privateIpAddress": "10.0.0.4",
@@ -171,10 +171,10 @@ The following table categorizes sizes into use cases.
171171
To see a list of VM sizes available in a particular region, use the [az vm list-sizes](/cli/azure/vm) command.
172172

173173
```azurecli-interactive
174-
az vm list-sizes --location eastus --output table
174+
az vm list-sizes --location eastus2 --output table
175175
```
176176

177-
Partial output:
177+
Example partial output:
178178

179179
```output
180180
MaxDataDiskCount MemoryInMb Name NumberOfCores OsDiskSizeInMb ResourceDiskSizeInMb

0 commit comments

Comments
 (0)