Update LAB_03d-Manage_Azure_Resources_by_Using_Azure_CLI.md

This commit is contained in:
staleycyn 2023-05-12 07:44:31 -07:00 committed by GitHub
parent bc4c0a1967
commit c94475d8d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,11 +27,11 @@ In this lab, you will:
![image](../media/lab03d.png)
## Instructions
### Instructions
### Exercise 1
## Exercise 1
#### Task 1: Start a Bash session in Azure Cloud Shell
## Task 1: Start a Bash session in Azure Cloud Shell
In this task, you will open a Bash session in Cloud Shell.
@ -45,7 +45,7 @@ In this task, you will open a Bash session in Cloud Shell.
1. Ensure **Bash** appears in the drop-down menu in the upper-left corner of the Cloud Shell pane.
#### Task 2: Create a resource group and an Azure managed disk by using Azure CLI
## Task 2: Create a resource group and an Azure managed disk by using Azure CLI
In this task, you will create a resource group and an Azure managed disk by using Azure CLI session within Cloud Shell.
@ -82,7 +82,7 @@ In this task, you will create a resource group and an Azure managed disk by usin
az disk show --resource-group $RGNAME --name $DISKNAME
```
#### Task 3: Configure the managed disk by using Azure CLI
## Task 3: Configure the managed disk by using Azure CLI
In this task, you will managing configuration of the Azure managed disk by using Azure CLI session within Cloud Shell.
@ -110,7 +110,7 @@ In this task, you will managing configuration of the Azure managed disk by using
az disk show --resource-group $RGNAME --name $DISKNAME --query sku
```
#### Clean up resources
## Clean up resources
> **Note**: Remember to remove any newly created Azure resources that you no longer use. Removing unused resources ensures you will not see unexpected charges.
@ -132,7 +132,7 @@ In this task, you will managing configuration of the Azure managed disk by using
>**Note**: The command executes asynchronously (as determined by the --nowait parameter), so while you will be able to run another Azure CLI command immediately afterwards within the same Bash session, it will take a few minutes before the resource groups are actually removed.
#### Review
## Review
In this lab, you have: