You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: Instructions/Labs/AZ400_M03_L07_Implementing_GitHub_Actions_for_CI_CD.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ In this task, you will create the Azure Service Principal used by GitHub to depl
83
83
1. On your lab computer, in a browser window, open the Azure Portal (https://portal.azure.com/).
84
84
1. In the portal, look for **Resource Groups** and click on it.
85
85
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**.
87
87
1. In the Azure Portal, open the **Cloud Shell** (next to the search bar).
88
88
89
89
> 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
182
182
1. List all resource groups created throughout the labs of this module by running the following command:
183
183
184
184
```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
186
186
```
187
187
188
188
1. Delete all resource groups you created throughout the labs of this module by running the following command:
189
189
190
190
```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'
192
192
```
193
193
194
194
>**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