Con az appservice sólo se gestionan los planes, no los appservices en sí.
az appservice plan create -g WebAPP -n MyApp --is-linux --sku F1 --no-wait
az appservice plan list
Se puede filtrar con -g NombreGrupo
az appservice plan show --name MyApp --resource-group WebAPP
az appservice plan delete --name MyApp --resource-group WebAPP
az webapp list
Este es un ejemplo para levantar un nginx. Se puede establecer el runtime, el repositorio o incluso la imagen docker
az webapp create -p MyApp -g WebAPP -n randomNameTestATX -i nginx
az webapp create -p MyApp -g WebAPP -n Test-TDD --runtime "NODE|14-lts"
az webapp deployment source config --name Test-TDD --resource-group WebAPP --repo-url https://github.com/atxpaul/test-tdd --branch main --manual-integration
az webapp browse -l --name Test-TDD --resource-group WebAPP
az webapp stop -n Test-TDD -g WebAPP
az webapp delete -n Test-TDD -g WebAPP