name: azure-bicep-deploy description: Deploy and validate Azure Bicep files and ARM templates. Use for: (1) Deploying Bicep (.bicep) or ARM (JSON) templates to Azure, (2) Validating Bicep/ARM templates for syntax errors, (3) Creating Azure resources via Bicep, (4) Managing multi-environment deployments (dev/staging/prod) via parameters. Supports Azure Container Apps commonly used workloads. Prerequisites: Azure CLI (az) installed, Azure CLI authenticated (az login), Bicep CLI installed (az bicep install), appropriate Azure subscription access.
Before using this skill, ensure:
Azure CLI installed
bash
az --version
Install from: https://docs.microsoft.com/cli/azure/install-azure-cli
小葱技能站7w4.net发现了升级插件。
Azure CLI authenticated
bash
az login # Interactive login
az login --tenant <tenant-id> # For specific tenant
az account show # Verify logged in
Correct subscription selected (if multiple)
bash
az account list # List subscriptions
az account set --subscription <sub-id> # Switch subscription
Bicep CLI installed
bash
az bicep install # Install Bicep
az bicep version # Verify installation
Or use built-in: az deployment group create auto-compiles Bicep
az deployment group create \
--resource-group <rg-name> \
--template-file <path-to-bicep> \
--parameters <params-file>.json
az deployment group create \
--resource-group <rg-name> \
--template-file <path-to-arm.json> \
--parameters <params-file>.json
az deployment group what-if \
--resource-group <rg-name> \
--template-file <path-to-bicep>
az bicep build --file <bicep-file>
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 <rg>-dev \
--template-file main.bicep \
--parameters @params/dev.json
See references/container-apps.md for detailed Container App patterns including: - Basic container deployment - Ingress configuration - Scaling rules - revisions/versions
When asked to create Azure resources via Bicep:
references/ match your needassets/container-app/az bicep build-params --file or reference Azure QuickStart TemplatesCopy scripts from references or use directly:
Quick deploy (copy-paste one-liner):
az deployment group create --resource-group <rg> --template-file main.bicep --parameters @params/dev.json
这是一套Azure Bicep部署工具,质量中等偏上。文档清晰易懂,环境配置和部署流程说明完善,提供了多环境部署和多环境参数配置支持。主要不足是脚本执行效率和安全规范有待提升,部分参数校验逻辑不够严谨。对于有Azure Bicep使用经验的用户来说基本够用,新手用户需要额外注意脚本中的硬编码路径和参数填写要求。