Skip to content

Commit 334f83b

Browse files
committed
edits
1 parent 909d5d2 commit 334f83b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/app-service/tutorial-connect-msi-key-vault-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ zip default.zip *.*
2727
# Save app name as variable for convenience
2828
appName=<app-name>
2929
30-
az appservice plan create --resource-group $groupName --name $appName --sku FREE --location $region --os-preference "Linux"
30+
az appservice plan create --resource-group $groupName --name $appName --sku FREE --location $region --is-linux
3131
az webapp create --resource-group $groupName --plan $appName --name $appName --runtime "node|14-lts"
3232
az webapp config appsettings set --resource-group $groupName --name $appName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
3333
az webapp deployment source config-zip --resource-group $groupName --name $appName --src ./default.zip
@@ -36,7 +36,7 @@ az webapp deployment source config-zip --resource-group $groupName --name $appNa
3636
The preceding commands:
3737
* Create a linux app service plan
3838
* Create a web app for Node.js 14 LTS
39-
* Configure the web app to install the npm packages
39+
* Configure the web app to install the npm packages on deployment
4040
* Upload the zip file, and install the npm packages
4141

4242
## Configure secrets as app settings

0 commit comments

Comments
 (0)