Merge pull request #394 from Biglna01/Biglna01-patch-6

Update LAB_06-Implement_Network_Traffic_Management.md
This commit is contained in:
staleycyn 2021-11-03 05:42:45 -07:00 committed by GitHub
commit daff920fd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,11 +51,13 @@ In this task, you will deploy four virtual machines into the same Azure region.
1. From the Cloud Shell pane, run the following to create the first resource group that will be hosting the lab environment (replace the `[Azure_region]` placeholder with the name of an Azure region where you intend to deploy Azure virtual machines)(you can use the "(Get-AzLocation).Location" cmdlet to get the region list):
```powershell
```powershell (execute one command at a time)
$location = '[Azure_region]'
```powershell (execute one command at a time)
$rgName = 'az104-06-rg1'
```powershell (execute one command at a time)
New-AzResourceGroup -Name $rgName -Location $location
```