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

Commit 82b81dd

Browse files
authored
Update AZ400_M11_Configuring_Pipelines_as_Code_with_YAML.md
Added full name for parameters instead of using shorthands
1 parent c5b6cb4 commit 82b81dd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Instructions/Labs/AZ400_M11_Configuring_Pipelines_as_Code_with_YAML.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ In this task, you will create an Azure web app and an Azure SQL database by usin
8484
```bash
8585
RESOURCEGROUPNAME='az400m11l01-RG'
8686
LOCATION='<region>'
87-
az group create -n $RESOURCEGROUPNAME -l $LOCATION
87+
az group create --name $RESOURCEGROUPNAME --location $LOCATION
8888
```
8989

9090
1. To create a Windows App service plan by running the following command:
9191

9292
```bash
9393
SERVICEPLANNAME='az400l11a-sp1'
94-
az appservice plan create -g $RESOURCEGROUPNAME -n $SERVICEPLANNAME --sku S1
94+
az appservice plan create --resource-group $RESOURCEGROUPNAME --name $SERVICEPLANNAME --sku B3
9595
```
9696

9797
> **Note**: If the `az appservice plan create` command fails with an error message starting with `ModuleNotFoundError: No module named 'vsts_cd_manager'`, then run the following commands and then re-run the failed command.
@@ -105,7 +105,7 @@ In this task, you will create an Azure web app and an Azure SQL database by usin
105105

106106
```bash
107107
WEBAPPNAME=partsunlimited$RANDOM$RANDOM
108-
az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n $WEBAPPNAME
108+
az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME
109109
```
110110

111111
> **Note**: Record the name of the web app. You will need it later in this lab.

0 commit comments

Comments
 (0)