Upgrade notes
AzAPI 2.11.0 is now the minimum. If your root module pins AzAPI below 2.11 — for example ~> 2.9 — raise the constraint and run terraform init -upgrade to refresh your lock file before applying. The AzAPI provider version section of the README has the exact block.
The default storage account API version moved from 2025-06-01 to 2025-08-01. You will see this in your next plan. It is an in-place change — the type attribute on azapi_resource does not force replacement, so your storage account is not recreated. If you pin resource_types.storage_account yourself, your pin still wins and nothing changes.
New: Smart access tier. access_tier = "Smart" hands block blob tiering to Azure instead of you managing Hot/Cool/Cold. It requires a StorageV2 account on Standard_ZRS, Standard_GZRS, or Standard_RAGZRS, plus Storage API 2025-08-01 or newer — the module validates all three at plan time and fails with a clear message rather than erroring mid-apply. Smart only governs block blobs that inherit the account default; page blobs, append blobs, and explicitly tiered blobs are unaffected. Existing accounts are untouched — the default is still Hot. Thanks to @BurgerCaptain for the contribution. (#361)
What's Changed
- chore: run avm pre-commit [skip ci] by @azure-verified-modules[bot] in #393
- feat: add Smart access tier support by @BurgerCaptain in #361 (merged via #394)
Full Changelog: v0.8.1...v0.9.0