Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Execute Azure deployments using azd, Terraform, or Bicep with built-in error recovery.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/bicep/errors.md
1# Bicep Errors23| Error | Resolution |4|-------|------------|5| Syntax error | `az bicep build` to check |6| Missing parameter | Add to parameters file |7| Invalid property | Check `mcp_bicep_get_az_resource_type_schema` |8| Resource conflict | Check existing resources |9| Deployment failed | `az deployment sub show --name <name>` |10| Permission denied | Verify RBAC roles |1112## Cleanup (DESTRUCTIVE)1314```bash15az group delete --name <rg-name> --yes16```1718⚠️ Permanently deletes ALL resources in the group.19