From 3f406be6e27d3fd9bd4ff88962fd9968b4a48cd8 Mon Sep 17 00:00:00 2001 From: Jan Kulbe Date: Fri, 14 Nov 2025 11:19:50 +0100 Subject: [PATCH 1/2] Fix syntax error in AZ CLI command Specify resource group in disk list command, required parameter --- .../LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index 192b7521..8052bfe2 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -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 From f1c419f30b51a5450d97d12f9e67d057b900c9ed Mon Sep 17 00:00:00 2001 From: Jan Kulbe Date: Fri, 14 Nov 2025 11:24:04 +0100 Subject: [PATCH 2/2] Specify resource group in disk list command Updated the command to list disks with resource group. --- .../LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index 8052bfe2..1481fb90 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -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!