Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Commit 57f8e0f

Browse files
authored
Merge pull request #360 from MicrosoftLearning/unaihuete93-patch-343
M03-LAB GH Action, fixes issue 343
2 parents 2ced5e9 + 965d68d commit 57f8e0f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Instructions/Labs/AZ400_M03_L07_Implementing_GitHub_Actions_for_CI_CD.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ In this task, you will create the Azure Service Principal used by GitHub to depl
8383
1. On your lab computer, in a browser window, open the Azure Portal (https://portal.azure.com/).
8484
1. In the portal, look for **Resource Groups** and click on it.
8585
1. Click on **+ Create** to create a new Resource Group for the exercise.
86-
1. On the **Create a resource group** tab, give the following name to your Resource Group: **rg-az400-eshopeonweb-NAME** (replace NAME for some unique alias). Click on **Review+Create > Create**.
86+
1. On the **Create a resource group** tab, give the following name to your Resource Group: **rg-az400-eshoponweb-NAME** (replace NAME for some unique alias). Click on **Review+Create > Create**.
8787
1. In the Azure Portal, open the **Cloud Shell** (next to the search bar).
8888

8989
> NOTE: if this is the first time you open the Cloud Shell, you need to configure the [persistent storage](https://learn.microsoft.com/en-us/azure/cloud-shell/persisting-shell-storage#create-new-storage)
@@ -182,13 +182,13 @@ In this exercise, you will use Azure Cloud Shell to remove the Azure resources p
182182
1. List all resource groups created throughout the labs of this module by running the following command:
183183

184184
```sh
185-
az group list --query "[?starts_with(name,'rg-az400-eshopeonweb')].name" --output tsv
185+
az group list --query "[?starts_with(name,'rg-az400-eshoponweb')].name" --output tsv
186186
```
187187

188188
1. Delete all resource groups you created throughout the labs of this module by running the following command:
189189

190190
```sh
191-
az group list --query "[?starts_with(name,'rg-az400-eshopeonweb')].[name]" --output tsv | xargs -L1 bash -c 'az group delete --name $0 --no-wait --yes'
191+
az group list --query "[?starts_with(name,'rg-az400-eshoponweb')].[name]" --output tsv | xargs -L1 bash -c 'az group delete --name $0 --no-wait --yes'
192192
```
193193

194194
>**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.

0 commit comments

Comments
 (0)