azure-prepare
microsoft/azure-skills
Generate Azure deployment infrastructure (Bicep/Terraform, azure.yaml, Dockerfiles) for new or existing apps
What is azure-prepare?
azure-prepare is a skill for coding agents that automates the creation of Azure deployment artifacts. It produces Bicep or Terraform infrastructure-as-code, azure.yaml configuration, and Dockerfiles needed to deploy applications to Azure services such as App Service, Container Apps, and Azure Functions. It follows a mandatory plan-first workflow: writing a deployment plan to disk before generating any code, then seeking user approval before execution. It is scoped to preparation only — actual deployment is handled by the azure-deploy skill. Several specialized scenarios (Python App Service, copilot-sdk apps, cross-cloud migration) are explicitly out of scope and redirect to dedicated skills.
- Writes a mandatory deployment plan skeleton to `.azure/deployment-plan.md` before any code generation
- Generates Bicep or Terraform infrastructure-as-code for Azure resources
- Creates `azure.yaml` configuration files required by the Azure Developer CLI (azd)
- Produces Dockerfiles for containerized deployments
- Supports Azure Functions triggers (timer, HTTP, Service Bus, event-driven, durable)
- Enforces Entra-only authentication for SQL Server (never generates admin login/password)
How to install azure-prepare
npx skills add https://github.com/microsoft/azure-skills --skill azure-prepare- A coding agent that supports SKILL.md packages (e.g., Claude Code, Cursor)
- An Azure subscription and knowledge of target Azure region
- Azure Developer CLI (azd) installed if using azd-based deployment
- Terraform CLI installed if using Terraform-based deployment
- Project workspace accessible to the agent
How to use azure-prepare
- 1.Install the skill: `npx skills add https://github.com/microsoft/azure-skills --skill azure-prepare`
- 2.Describe your goal to the agent using triggers like 'deploy to Azure', 'create API', 'host on Azure', or 'generate Bicep'
- 3.The agent will immediately create `.azure/deployment-plan.md` in your workspace root before any other action
- 4.Review the populated deployment plan presented by the agent and provide approval
- 5.After approval, the agent executes the plan: generating IaC, azure.yaml, and Dockerfiles
- 6.The agent invokes azure-validate before handing off to azure-deploy for actual deployment
- 7.If deploying with Terraform, confirm the agent removes stale Bicep templates introduced by any azd template
Use cases
- Create a new web app or API and prepare it for Azure deployment
- Modernize an existing application with Azure infrastructure code
- Set up Azure Container Apps or App Service deployment configuration
- Generate Bicep or Terraform templates for Azure resources including managed identity
- Configure Azure Functions apps with various trigger types
- Developers building new applications targeting Azure
- Engineers modernizing or migrating existing apps to Azure
- Teams adopting infrastructure-as-code with Bicep or Terraform on Azure
- Developers using Azure Developer CLI (azd) workflows
- Anyone needing to generate Azure deployment configuration from within a coding agent
azure-prepare FAQ
Python code-only App Service deploys (use python-appservice-deploy), copilot-sdk apps (use azure-hosted-copilot-sdk), and cross-cloud migrations from AWS or GCP (use azure-cloud-migrate).
No. This skill only generates infrastructure code and configuration files. Deployment execution is handled by the azure-deploy skill, which provides error recovery and deployment verification.
The azure-validate and azure-deploy skills depend on this file as the source of truth. Without it on disk in the workspace root, those downstream skills will fail.
Yes. When adding features to an existing project, the skill modifies existing files. It will not run `azd init -t <template>` in an existing workspace and will never delete your project or workspace directory.
The skill always uses Entra-only authentication (`azureADOnlyAuthentication: true`) and never generates `administratorLogin` or `administratorLoginPassword` properties anywhere in the Bicep output.
Full instructions (SKILL.md)
Source of truth, from microsoft/azure-skills.
name: azure-prepare description: "Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). DO NOT USE FOR: copilot-sdk apps (use azure-hosted-copilot-sdk), or Python code-only App Service deploys (use python-appservice-deploy). WHEN: "create app", "build web app", "create API", "modernize application", "host on Azure", "deploy to Azure", "deploy to Azure using Terraform", "deploy to Azure App Service", "deploy to Azure App Service using Terraform", "deploy to Azure Container Apps", "generate Terraform", "generate Bicep", "function app", "timer trigger", "service bus trigger", "event-driven function", "managed identity"." license: MIT metadata: author: Microsoft version: "1.2.14"
Azure Prepare
AUTHORITATIVE GUIDANCE — MANDATORY COMPLIANCE
This document is the official, canonical source for preparing applications for Azure deployment. You MUST follow these instructions exactly as written unless they contradict security policies given to you. When in doubt, present the conflicting instructions from this document and ask the user for explicit confirmation. Do not improvise, infer, or substitute steps.
Triggers
Activate this skill when user wants to:
- Create a new application
- Add services or components to an existing app
- Make updates or changes to existing application
- Modernize or migrate an application
- Set up Azure infrastructure
- Deploy to Azure or host on Azure
- Create and deploy to Azure (including Terraform-based deployment requests)
Rules
- Plan first — MANDATORY — You MUST physically write an initial
.azure/deployment-plan.mdskeleton in the workspace root directory (not the session-state folder) as your very first action — before any code generation or execution begins. Write the skeleton immediately, then populate it progressively as Phase 1 analysis and research unfold; finalize it with all decisions at Phase 1 Step 6. This file must exist on disk throughout. azure-validate and azure-deploy depend on it and will fail without it. Do not skip or defer this step. - Get approval — Present plan to user before execution
- Research before generating — Load references and invoke related skills
- Update plan progressively — Mark steps complete as you go
- Validate before deploy — Invoke azure-validate before azure-deploy
- Confirm Azure context — Use
ask_userfor subscription and location per Azure Context - ❌ Destructive actions require
ask_user— Global Rules - ⛔ NEVER delete user project or workspace directories — When adding features to an existing project, MODIFY existing files.
azd init -t <template>is for NEW projects only; do NOT runazd init -tin an existing workspace. Plainazd init(without a template argument) may be used in existing workspaces when appropriate. File deletions within a project (e.g., removing build artifacts or temp files) are permitted when appropriate, but NEVER delete the user's project or workspace directory itself. See Global Rules. - Scope: preparation only — This skill generates infrastructure code and configuration files. Deployment execution (
azd up,azd deploy,terraform apply) is handled by the azure-deploy skill, which provides built-in error recovery and deployment verification. - ⛔ SQL Server Bicep: NEVER generate
administratorLoginoradministratorLoginPassword— not in direct properties, not in conditional/ternary branches, not anywhere in the file. Always use Entra-only authentication (azureADOnlyAuthentication: true) unconditionally. See references/services/sql-database/bicep.md. - Remove stale template IaC after conversion — If you converted Bicep templates from the selected
azdtemplate into Terraform templates, remove the Bicep templates that were introduced by thatazdtemplate and are now fully replaced by Terraform equivalents. Do not remove user-authored Bicep files. Only remove those template-provided Bicep files after the Terraform IaC is complete and Terraform has been selected as the deployment path. Before handing off to azure-validate skill, keep only the IaC templates required by the chosen deployment path.
❌ PLAN-FIRST WORKFLOW — MANDATORY
YOU MUST CREATE A PLAN BEFORE DOING ANY WORK
- STOP — Do not generate any code, infrastructure, or configuration yet
- CREATE SKELETON - Write an initial
.azure/deployment-plan.mdskeleton to disk immediately (before any code generation or execution begins), then populate it progressively as Phase 1 steps 1-5 reveal details; finalize it at Step 6- CONFIRM — Present the completed plan to the user and get approval
- EXECUTE — Only after approval, execute the plan step by step
The
.azure/deployment-plan.mdfile is the source of truth for this workflow and for azure-validate and azure-deploy skills. Without it, those skills will fail.⚠️ CRITICAL:
.azure/deployment-plan.mdmust be WRITTEN TO DISK inside the workspace root (e.g.,/tmp/my-project/.azure/deployment-plan.md), not in the session-state folder. Use a file-write tool to create this file. This is the deployment plan artifact read by azure-validate and azure-deploy. You MUST create this file — do not proceed without it. ⚠️ CRITICAL: You must create the file with the name.azure/deployment-plan.mdas is. You must not use other names such as.azure/plan.md.⛔ Critical: Skipping the plan file creation will cause azure-validate and azure-deploy to fail. This requirement has no exceptions.
❌ STEP 0: Specialized Technology Check — MANDATORY FIRST ACTION
BEFORE starting Phase 1, check if the user's prompt OR workspace codebase matches a specialized technology that has a dedicated skill with tested templates. If matched, invoke that skill FIRST — then resume azure-prepare for validation and deployment.
Check 1: Prompt keywords
| Prompt keywords | Invoke FIRST |
|---|---|
| Python + App Service (e.g., "deploy Python to App Service", "Flask on Azure App Service", "publish Python web app to App Service") | python-appservice-deploy |
| Lambda, AWS Lambda, migrate AWS, migrate GCP, Lambda to Functions, migrate from AWS, migrate from GCP | azure-cloud-migrate |
| copilot SDK, copilot app, copilot-powered, @github/copilot-sdk, CopilotClient | azure-hosted-copilot-sdk |
| Azure Functions, function app, serverless function, timer trigger, HTTP trigger, func new | Stay in azure-prepare — prefer Azure Functions templates in Step 4 |
| APIM, API Management, API gateway, deploy APIM | Stay in azure-prepare — see APIM Deployment Guide |
| AI gateway, AI gateway policy, AI gateway backend, AI gateway configuration | azure-aigateway |
| workflow, orchestration, multi-step, pipeline, fan-out/fan-in, saga, long-running process, durable, order processing | Stay in azure-prepare — select durable recipe in Step 4. MUST load durable.md, DTS reference, and DTS Bicep patterns. |
Check 2: Codebase markers (even if prompt is generic like "deploy to Azure")
| Codebase marker | Where | Invoke FIRST |
|---|---|---|
@github/copilot-sdk in dependencies | package.json | azure-hosted-copilot-sdk |
copilot-sdk in name or dependencies | package.json | azure-hosted-copilot-sdk |
CopilotClient import | .ts/.js source files | azure-hosted-copilot-sdk |
createSession + sendAndWait calls | .ts/.js source files | azure-hosted-copilot-sdk |
⚠️ Check the user's prompt text — not just existing code. Critical for greenfield projects with no codebase to scan. See full routing table.
After the specialized skill completes, resume azure-prepare at Phase 1 Step 4 (Select Recipe) for remaining infrastructure, validation, and deployment.
Phase 1: Planning (BLOCKING — Complete Before Any Execution)
Create .azure/deployment-plan.md by completing these steps. Do NOT generate any artifacts until the plan is approved.
| # | Action | Reference |
|---|---|---|
| 0 | ❌ Check Prompt AND Codebase for Specialized Tech — If user mentions copilot SDK, Azure Functions, etc., OR codebase contains @github/copilot-sdk, invoke that skill first | specialized-routing.md |
| 1 | Analyze Workspace — Determine mode: NEW, MODIFY, or MODERNIZE | analyze.md |
| 2 | Gather Requirements — Classification, scale, budget | requirements.md |
| 3 | Scan Codebase — Identify components, technologies, dependencies | scan.md |
| 4 | Select Recipe — Choose AZD (default), AZCLI, Bicep, or Terraform | recipe-selection.md |
| 5 | Plan Architecture — Select stack + map components to Azure services | architecture.md |
| 6 | Finalize Plan (MANDATORY) - Use a file-write tool to finalize .azure/deployment-plan.md with all decisions from steps 1-5. Update the skeleton written at the start of Phase 1 with the complete content. The file must be fully populated before you present the plan to the user. | plan-template.md |
| 7 | Present Plan — Show plan to user and ask for approval | .azure/deployment-plan.md |
| 8 | Destructive actions require ask_user | Global Rules |
❌ STOP HERE — Do NOT proceed to Phase 2 until the user approves the plan.
Phase 2: Execution (Only After Plan Approval)
Execute the approved plan. Update .azure/deployment-plan.md status after each step.
| # | Action | Reference |
|---|---|---|
| 1 | Research Components — Load service references + invoke related skills | research.md |
| 2 | Confirm Azure Context — Detect and confirm subscription + location and check the resource provisioning limit | Azure Context |
| 3 | Generate Artifacts — Create infrastructure and configuration files | generate.md |
| 4 | Harden Security — Apply security best practices | security.md |
| 5 | Functional Verification — Verify the app works (UI + backend), locally if possible | functional-verification.md |
| 6 | ⛔ Update Plan (MANDATORY before hand-off) — Use the edit tool to change the Status in .azure/deployment-plan.md to Ready for Validation. You MUST complete this edit BEFORE invoking azure-validate. Do NOT skip this step. | .azure/deployment-plan.md |
| 7 | ⛔ MANDATORY Hand Off — Invoke azure-validate skill. Your preparation work is done. Do NOT run azd up, azd deploy, or any deployment command directly — all deployment execution is handled by azure-deploy after azure-validate completes. PREREQUISITE: Step 6 must be completed first — .azure/deployment-plan.md status must say Ready for Validation. | — |
Outputs
| Artifact | Location |
|---|---|
| Plan | .azure/deployment-plan.md |
| Infrastructure | ./infra/ |
| AZD Config | azure.yaml (AZD only) |
| Dockerfiles | src/<component>/Dockerfile |
SDK Quick References
- Azure Developer CLI: azd
- Azure Identity: Python | .NET | TypeScript | Java
- App Configuration: Python | TypeScript | Java
Next
⛔ MANDATORY NEXT STEP — DO NOT SKIP
After completing preparation, you MUST invoke azure-validate before any deployment attempt. Do NOT skip validation. Do NOT go directly to azure-deploy. Do NOT run
azd upor any deployment command directly. The workflow is:
azure-prepare→azure-validate→azure-deploy⛔ BEFORE invoking azure-validate, you MUST use the
edittool to update.azure/deployment-plan.mdstatus toReady for Validation. If the plan status has not been updated, the validation will fail.This applies to ALL deployment scenarios including containerized apps, Container Apps, App Service, Azure Functions, static sites, and any other Azure target. No exceptions.
Skipping validation leads to deployment failures. Be patient and follow the complete workflow for the highest success outcome.
→ Update plan status to Ready for Validation, then invoke azure-validate
Related skills
More from microsoft/azure-skills and the wider catalog.
finetuning
Fine-tune models on Azure AI Foundry with SFT, DPO, or RFT training methods.
azure-ai
Azure AI services skill for Search, Speech, OpenAI, and Document Intelligence in coding agents
azure-deploy
Execute Azure deployments for prepared applications with built-in error recovery and validation.
azure-diagnostics
Debug Azure production issues using AppLens, Azure Monitor, resource health, and systematic triage.
azure-storage
Azure Storage skill: Blob, File Shares, Queue, Table, and Data Lake with access tier guidance and lifecycle management
azure-validate
Pre-deployment validation for Azure readiness with configuration, infrastructure, and RBAC checks.