azure-deploy

Automate Azure application deployment using Azure Developer CLI, Bicep, and Terraform.

10|2|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/mahmoud20138/Claude-Skills-Collection --skill azure-deploy-mahmoud20138
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: azure-deploy
Source: https://github.com/mahmoud20138/Claude-Skills-Collection/tree/main/02-Azure-Skills/skills/azure-deploy
Command: npx skills add https://github.com/mahmoud20138/Claude-Skills-Collection --skill azure-deploy-mahmoud20138

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the deployment of prepared applications to Azure, streamlining the process of getting your code live in the cloud.

Core Features & Use Cases

  • Automated Deployment: Executes azd up, azd deploy, or infrastructure provisioning commands for Bicep and Terraform projects.
  • Prerequisite Enforcement: Ensures azure-prepare and azure-validate skills have been successfully completed before deployment.
  • Use Case: After preparing and validating your application's Azure infrastructure, use this skill to push the latest code changes to your production environment with a single command.

Quick Start

Run the azure-deploy skill to provision and deploy your application to Azure.

Frequently Asked Questions about azure-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate application deployment to Azure using azd?

Automating application deployment to Azure is achieved by executing `azd up` or `azd deploy` commands to provision infrastructure and push code. This process handles Bicep and Terraform projects automatically, streamlining cloud delivery into a single command.

What are the prerequisites for provisioning Azure infrastructure with Bicep and Terraform?

Provisioning Azure infrastructure with Bicep and Terraform requires successfully completing the `azure-prepare` and `azure-validate` skills first. Additionally, the `.azure/plan.md` file must be validated before any deployment execution can begin.

Does Azure deployment with azd enforce validation checks before running commands?

Azure deployment with azd strictly enforces validation checks by requiring successful completion of `azure-prepare` and `azure-validate` skills. It also validates the `.azure/plan.md` file and adheres to global rules for destructive actions and user confirmation.

Can I run azd up to provision and deploy Bicep projects in one step?

You can run `azd up` to provision and deploy Bicep projects in a single step. This command automates the entire workflow by simultaneously applying your infrastructure templates and deploying the application code to the Azure cloud environment.

Why does my Azure deployment fail due to missing validation requirements?

Azure deployment fails due to missing validation requirements if the `azure-prepare` and `azure-validate` skills have not been successfully completed. Execution is blocked until these prerequisites are met and the `.azure/plan.md` file is fully validated.

What is the best way to deploy code changes to Azure production after infrastructure validation?

The best way to deploy code changes to Azure production after validation is to run the automated deployment skill. It executes `azd deploy` or `azd up` to push the latest application updates to your provisioned cloud environment safely.