Azure Cloud Architect
A six-step skill for designing Azure architectures: requirements, pattern selection, Bicep IaC, cost optimization, CI/CD, and security review.
Dev & CodingIntermediate★ 24,151⑂ 3,405AI score 8/10Last updated: Aug 9, 2026
What it does
- Takes app type, expected users, budget, and compliance needs (SOC 2, HIPAA, GDPR) and recommends a matching Azure pattern: App Service web, AKS microservices, serverless event-driven, or data pipeline.
- Generates production-ready Bicep scaffolds via
bicep_generator.pywith Managed Identity, Key Vault, diagnostic settings, NSGs, and cost-allocation tags. - Runs
cost_optimizer.pyagainst a resource inventory to surface right-sizing, Reserved Instance, and storage-tier savings with priorities. - Supplies GitHub Actions and Azure DevOps deployment pipeline templates plus troubleshooting commands (
az bicep build,az deployment group validate, RBAC/quota checks). - Includes a pre-production security checklist (Entra ID, Private Endpoints, WAF, Defender for Cloud) and an anti-pattern table.
Who it's for
- Startup developers and tech leads designing new systems on Azure.
- Infrastructure/DevOps engineers migrating from ARM JSON to Bicep.
- Cloud operators tasked with trimming monthly Azure spend.
Examples
- "Design an Azure web app for a 5,000-user startup under $100/month" → App Service B1 + Azure SQL Serverless + Blob + Front Door with a Bicep template.
- "Design a SaaS microservices platform on AKS for 50k users" → three node pools, API Management, Cosmos DB, Service Bus, multi-zone deployment.
- "We spend $2,000/month on Azure — cut it" → prioritized actions (SQL right-sizing, reservations, Cool tier) worth roughly $735/month.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.gemini/skills/azure-cloud-architect/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .gemini/skills/azure-cloud-architect folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/azure-cloud-architect/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/azure-cloud-architect ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal (Terminal on macOS, Git Bash or WSL on Windows).
- Clone the repo:
git clone https://github.com/alirezarezvani/claude-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-skills/.gemini/skills/azure-cloud-architect ~/.claude/skills/ - Install prerequisites: Python 3 and the Azure CLI, then run
az loginandaz bicep install. - Restart Claude Code and ask something like "Design an Azure architecture for my web app" to trigger the skill.
View source on GitHub ↗License: MIT