From d4d3bb4dcc780f5905aa9bbc32247b5d26394231 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 3 Nov 2021 15:44:16 +0100 Subject: [PATCH] Update LAB_06-Implement_Network_Traffic_Management.md correction of typos --- ..._06-Implement_Network_Traffic_Management.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md index 0f1f8eee..4841fbb7 100644 --- a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md +++ b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md @@ -49,17 +49,19 @@ In this task, you will deploy four virtual machines into the same Azure region. 1. In the toolbar of the Cloud Shell pane, click the **Upload/Download files** icon, in the drop-down menu, click **Upload** and upload the files **\\Allfiles\\Labs\\06\\az104-06-vms-loop-template.json** and **\\Allfiles\\Labs\\06\\az104-06-vms-loop-parameters.json** into the Cloud Shell home directory. -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): +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 (execute one command at a time) - $location = '[Azure_region]' + ```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) + $rgName = 'az104-06-rg1' + ``` -```powershell (execute one command at a time) - New-AzResourceGroup -Name $rgName -Location $location - ``` + ```powershell (execute one command at a time) + New-AzResourceGroup -Name $rgName -Location $location + ``` 1. From the Cloud Shell pane, run the following to create the three virtual networks and four Azure VMs into them by using the template and parameter files you uploaded: