Merge pull request #396 from Biglna01/Biglna01-patch-8

Update LAB_07-Manage_Azure_Storage.md
This commit is contained in:
staleycyn 2021-11-03 05:43:42 -07:00 committed by GitHub
commit 1efc4f5c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,12 +50,15 @@ In this task, you will deploy an Azure virtual machine that you will use later i
1. From the Cloud Shell pane, run the following to create the resource group that will be hosting the virtual machine (replace the `[Azure_region]` placeholder with the name of an Azure region where you intend to deploy the Azure virtual machine) 1. From the Cloud Shell pane, run the following to create the resource group that will be hosting the virtual machine (replace the `[Azure_region]` placeholder with the name of an Azure region where you intend to deploy the Azure virtual machine)
>**Note**: To list the names of Azure regions, run `(Get-AzLocation).Location` >**Note**: To list the names of Azure regions, run `(Get-AzLocation).Location`
>**Note**: Each command below should be typed separately
```powershell ```powershell
$location = '[Azure_region]' $location = '[Azure_region]'
```powershell
$rgName = 'az104-07-rg0' $rgName = 'az104-07-rg0'
```powershell
New-AzResourceGroup -Name $rgName -Location $location New-AzResourceGroup -Name $rgName -Location $location
``` ```
1. From the Cloud Shell pane, run the following to deploy the virtual machine by using the uploaded template and parameter files: 1. From the Cloud Shell pane, run the following to deploy the virtual machine by using the uploaded template and parameter files: