Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Instructions/advanced/03-configure-pipelines-code-yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ You'll create an Azure web app to deploy your application to.

```bash
WEBAPPNAME=eshoponWebYAML$RANDOM$RANDOM
az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME
az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME --runtime "DOTNETCORE|10.0"
```

> **Note**: Record the name of the web app. You'll need it later in this lab.
Expand Down
4 changes: 2 additions & 2 deletions Instructions/advanced/04-control-deployments-release-gates.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ You'll create two Azure web apps representing the DevTest and Production environ

```bash
SUFFIX=$RANDOM$RANDOM
az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-DevTest
az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-Prod
az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-DevTest --runtime "DOTNETCORE|10.0"
az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-Prod --runtime "DOTNETCORE|10.0"
```

> **Note**: Record the name of the DevTest web app. You'll need it later.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ You'll create Azure resources needed for this lab using Azure Cloud Shell.

```bash
WEBAPPNAME=az400eshoponweb$RANDOM$RANDOM
az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME
az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME --runtime "DOTNETCORE|10.0"
```

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