azure-app-service
Installation
SKILL.md
Azure App Service
Manage web apps and API apps.
List web apps
az webapp list --query '[].{Name:name,ResourceGroup:resourceGroup,State:state,URL:defaultHostName}' -o table
Show app details
az webapp show --name my-app --resource-group my-rg | jq '{name, state, defaultHostName, httpsOnly, kind}'