Merge pull request #1027 from jkulbe-msft/patch-5

Fix syntax error in AZ CLI command
This commit is contained in:
staleycyn 2025-11-14 05:45:23 -08:00 committed by GitHub
commit a2ace87164
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,7 +198,7 @@ In this task, you work with the Azure Cloud Shell and Azure PowerShell. Azure Cl
1. Confirm the disk was created.
```sh
az disk list --output table
az disk list --resource-group az104-rg3 --output table
```
## Task 5: Deploy a resource by using Azure Bicep
@ -234,7 +234,7 @@ In this task, you will use a Bicep file to deploy a managed disk. Bicep is a dec
1. Confirm the disk was created.
```sh
az disk list --output table
az disk list --resource-group az104-rg3 --output table
```
>**Note:** You have successfully deployed five managed disks, each in a different way. Nice job!