Azure Bicep Deploy
/install azure-bicep-deploy
Azure Bicep Deploy
Prerequisites (Required)
Before using this skill, ensure:
-
Azure CLI installed
az --versionInstall from: https://docs.microsoft.com/cli/azure/install-azure-cli
-
Azure CLI authenticated
az login # Interactive login az login --tenant \x3Ctenant-id> # For specific tenant az account show # Verify logged in -
Correct subscription selected (if multiple)
az account list # List subscriptions az account set --subscription \x3Csub-id> # Switch subscription -
Bicep CLI installed
az bicep install # Install Bicep az bicep version # Verify installationOr use built-in:
az deployment group createauto-compiles Bicep
Deploy a Bicep File
az deployment group create \
--resource-group \x3Crg-name> \
--template-file \x3Cpath-to-bicep> \
--parameters \x3Cparams-file>.json
Deploy an ARM Template
az deployment group create \
--resource-group \x3Crg-name> \
--template-file \x3Cpath-to-arm.json> \
--parameters \x3Cparams-file>.json
Validate a Template (What-If)
az deployment group what-if \
--resource-group \x3Crg-name> \
--template-file \x3Cpath-to-bicep>
Validate Syntax Only (Bicep)
az bicep build --file \x3Cbicep-file>
Multi-Environment Deployments
Use parameter files for each environment:
params/
├── dev.bicepparam # or dev.json
├── staging.bicepparam # or staging.json
└── prod.bicepparam # or prod.json
Deploy with environment:
az deployment group create \
--resource-group \x3Crg>-dev \
--template-file main.bicep \
--parameters @params/dev.json
Azure Container Apps
See references/container-apps.md for detailed Container App patterns including:
- Basic container deployment
- Ingress configuration
- Scaling rules
- revisions/versions
Create New Resources
When asked to create Azure resources via Bicep:
- Check if existing templates in
references/match your need - For Container Apps: use the sample in
assets/container-app/ - For other resources: generate using
az bicep build-params --fileor reference Azure QuickStart Templates
Scripts
Copy scripts from references or use directly:
- references/deploy.md — Deployment script with environment selection
- references/validate.md — Validate and what-if
- references/bicep-build.md — Build Bicep to ARM
Quick deploy (copy-paste one-liner):
az deployment group create --resource-group \x3Crg> --template-file main.bicep --parameters @params/dev.json
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install azure-bicep-deploy - After installation, invoke the skill by name or use
/azure-bicep-deploy - Provide required inputs per the skill's parameter spec and get structured output
What is Azure Bicep Deploy?
Deploy and validate Azure Bicep and ARM templates to manage resources and multi-environment setups, including Azure Container Apps configurations. It is an AI Agent Skill for Claude Code / OpenClaw, with 397 downloads so far.
How do I install Azure Bicep Deploy?
Run "/install azure-bicep-deploy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Azure Bicep Deploy free?
Yes, Azure Bicep Deploy is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Azure Bicep Deploy support?
Azure Bicep Deploy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Azure Bicep Deploy?
It is built and maintained by junior-juarez-MSFT (@junior-juarez-msft); the current version is v2.1.0.