Last active
May 1, 2024 16:51
-
-
Save mikepfeiffer/7a3a8d12a42ec705233ceee3f3844a35 to your computer and use it in GitHub Desktop.
Create App Service via Azure CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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