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

Commit 58dacc5

Browse files
authored
Update AZ400_M03_L08_Deploying_Docker_containers_to_Azure_App_Service_web_apps.md
1 parent 1936c6c commit 58dacc5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Instructions/Labs/AZ400_M03_L08_Deploying_Docker_containers_to_Azure_App_Service_web_apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ A service principal is automatically created by Azure Pipeline when you connect
118118
1. From the **Bash** prompt, in the **Cloud Shell** pane, run the following command to create a service principal:
119119
120120
```
121-
az ad sp create-for-rbac --name sp-az400 --role contributor --scopes /subscriptions/$subscriptionId
121+
az ad sp create-for-rbac --name sp-az400-azdo --role contributor --scopes /subscriptions/$subscriptionId
122122
```
123123
124124
> **Note**: The command will generate a JSON output. Copy the output to text file. You will need it later in this lab.
@@ -188,7 +188,7 @@ In this task, you will add a new role assignment to allow Azure App Service pull
188188
1. From the **Bash** prompt, in the **Cloud Shell** pane, run the following commands to retrieve the values of the Azure subscription ID attribute:
189189
190190
```sh
191-
spId=$(az ad sp list --display-name sp-az400 --query "[].id" --output tsv)
191+
spId=$(az ad sp list --display-name sp-az400-azdo --query "[].id" --output tsv)
192192
echo $spId
193193
roleName=$(az role definition list --name "User Access Administrator" --query [0].name --output tsv)
194194
echo $roleName

0 commit comments

Comments
 (0)