Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Validate Azure configurations, ARM/Bicep templates, and resource settings before deployment
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/azcli/errors.md
1# AZCLI Validation Errors23| Error | Fix |4|-------|-----|5| `AADSTS700082: Token expired` | `az login` |6| `Please run 'az login'` | `az login` |7| `AADSTS50076: MFA required` | `az login --use-device-code` |8| `AuthorizationFailed` | Request Contributor role |9| `npm ci` fails with `missing: package-lock.json` | Run `npm install --package-lock-only` in the service directory before building |10| `Template validation failed` | Check Bicep syntax |1112## Debug1314```bash15az <command> --verbose --debug16```17