From 1657a9e6a9318ce620433d7394fd8a49bbfd2713 Mon Sep 17 00:00:00 2001 From: Biglna01 <79334487+Biglna01@users.noreply.github.com> Date: Tue, 2 Nov 2021 13:45:00 -0400 Subject: [PATCH] Update LAB_06-Implement_Network_Traffic_Management.md --- .../Labs/LAB_06-Implement_Network_Traffic_Management.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md index 1936f397..ed3bd9b6 100644 --- a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md +++ b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md @@ -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 ```