From aj-geddes-useful-ai-prompts-4
Deploys and manages web apps on Azure App Service with auto-scaling, deployment slots, HTTPS, health checks, and monitoring. Includes Azure CLI and Terraform configuration guides.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:azure-app-serviceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Azure App Service provides a fully managed platform for building and hosting web applications, REST APIs, and mobile backends. Support multiple programming languages with integrated DevOps, security, and high availability.
Minimal working example:
# Login to Azure
az login
# Create resource group
az group create --name myapp-rg --location eastus
# Create App Service Plan
az appservice plan create \
--name myapp-plan \
--resource-group myapp-rg \
--sku P1V2 \
--is-linux
# Create web app
az webapp create \
--resource-group myapp-rg \
--plan myapp-plan \
--name myapp-web \
--deployment-container-image-name nodejs:18
# Configure app settings
az webapp config appsettings set \
--resource-group myapp-rg \
--name myapp-web \
--settings \
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| App Service Creation with Azure CLI | App Service Creation with Azure CLI |
| Terraform App Service Configuration | Terraform App Service Configuration |
| Deployment Configuration | Deployment Configuration |
| Health Check Configuration | Health Check Configuration |
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4Expert guidance for Azure App Service development: troubleshooting, best practices, architecture, deployment, security, and configuration. Use when choosing plans, configuring VNet/custom domains/certs, CI/CD slots, or managed identity access.
Generates Bicep/Terraform infrastructure, azure.yaml configs, and Dockerfiles to prepare apps for Azure deployment. For create, modernize, or deploy workflows to App Service/Container Apps.
Creates and manages Azure Functions for serverless computing with triggers, bindings, authentication, and monitoring. Supports HTTP APIs, message processing, scheduled jobs, and event-driven workflows.