Skip to content

Commit 8d9e0ea

Browse files
Merge pull request #230164 from diberry/diberry/0309-fix
App Service - lts per os
2 parents 8f89c65 + 6607914 commit 8d9e0ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/app-service/tutorial-auth-aad.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Create the resource group, web app plan, the web app and deploy in a single step
8080
1. Create and deploy the frontend web app with [az webapp up](/cli/azure/webapp#az-webapp-up). Because web app name has to be globally unique, replace `<front-end-app-name>` with a unique name.
8181
8282
```azurecli-interactive
83-
az webapp up --resource-group myAuthResourceGroup --name <front-end-app-name> --plan myPlan --sku FREE --location "West Europe"--runtime "NODE:16-lts"
83+
az webapp up --resource-group myAuthResourceGroup --name <front-end-app-name> --plan myPlan --sku FREE --os-type Windows --location "West Europe" --runtime "NODE:16LTS"
8484
```
8585
8686
1. Change into the backend web app directory.
@@ -92,7 +92,7 @@ Create the resource group, web app plan, the web app and deploy in a single step
9292
1. Deploy the backend web app to same resource group and app plan. Because web app name has to be globally unique, replace `<back-end-app-name>` with a unique set of initials or numbers.
9393
9494
```azurecli-interactive
95-
az webapp up --resource-group myAuthResourceGroup --name <back-end-app-name> --plan myPlan --runtime "NODE:16-lts"
95+
az webapp up --resource-group myAuthResourceGroup --name <back-end-app-name> --plan myPlan --os-type Windows --location "West Europe" --runtime "NODE:16LTS"
9696
```
9797
9898
::: zone-end

0 commit comments

Comments
 (0)