mirror of
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator.git
synced 2026-02-09 02:17:04 +00:00
Updated lab 6 instructions
This commit fixes the issues with lab 6 instructions which has a problem with rendering code blocks
This commit is contained in:
parent
e7bd65c579
commit
9855050fa1
@ -51,18 +51,19 @@ 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):
|
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)
|
```powershell
|
||||||
$location = '[Azure_region]'
|
$location = '[Azure_region]'
|
||||||
```
|
```
|
||||||
|
Now the resource group name:
|
||||||
```powershell (execute one command at a time)
|
```powershell
|
||||||
$rgName = 'az104-06-rg1'
|
$rgName = 'az104-06-rg1'
|
||||||
```
|
```
|
||||||
|
And finally create the resource group in your desired location:
|
||||||
```powershell (execute one command at a time)
|
```powershell
|
||||||
New-AzResourceGroup -Name $rgName -Location $location
|
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:
|
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:
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user