fai-update-avm-bicep — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited fai-update-avm-bicep (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill to safely upgrade AVM module versions in Bicep templates while preserving deployment compatibility.
rg "br/(public|.*):avm/" infra/**/*.bicep -nmodule storage 'br/public:avm/res/storage/storage-account:0.18.0' = {
name: 'storage'
params: {
name: storageName
location: location
}
}| Strategy | When to Use | Risk |
|---|---|---|
| Patch only | Security/bugfix only | Low |
| Minor upgrade | New optional params expected | Medium |
| Major upgrade | Breaking changes tolerated | High |
// Before
module kv 'br/public:avm/res/key-vault/vault:0.12.0' = {
name: 'kv'
params: {
name: kvName
location: location
}
}
// After
module kv 'br/public:avm/res/key-vault/vault:0.13.1' = {
name: 'kv'
params: {
name: kvName
location: location
}
}az bicep build --file infra/main.bicep
az deployment group what-if --resource-group rg-demo --template-file infra/main.bicep --parameters @infra/main.parameters.json| Check | Expected |
|---|---|
| All AVM modules pinned | No floating latest tags |
| Bicep build | Passes without blocking errors |
| What-if drift | No unintended deletes |
| Parameter files | Still resolve all required params |
| Issue | Cause | Fix |
|---|---|---|
| New required param error | Module changed | Add missing params from module README |
| What-if shows deletes | Name/scope shift after upgrade | Align names/scopes or roll back |
| Policy deny after upgrade | New default violates policy | Override secure defaults explicitly |
git checkout HEAD~1 -- infra/**/*.bicep
az bicep build --file infra/main.bicep~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.