Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Last active May 1, 2024 16:51
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save mikepfeiffer/7a3a8d12a42ec705233ceee3f3844a35 to your computer and use it in GitHub Desktop.
Save mikepfeiffer/7a3a8d12a42ec705233ceee3f3844a35 to your computer and use it in GitHub Desktop.
Create App Service via Azure CLI
az group create -n webapps-dev-rg -l westus2
az appservice plan create --name webapps-dev-plan \
--resource-group webapps-dev-rg \
--sku s1 \
--is-linux
az webapp create -g webapps-dev-rg \
-p webapps-dev-plan \
-n mp10344884 \
--runtime "node|10.14"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment