Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Hello Eric Klimuk
It appears you’re encountering the “invalid sku” error because Azure is now blocking the legacy GPv1 (“Storage”) and Blob-Only (“BlobOnly”) account types due to their upcoming retirement. This is why the diagnostic marks your account type as “not supported.”
However, you can still perform an in-place upgrade from GPv1 or BlobStorage to GPv2 (StorageV2) without any disruption. Here’s how to proceed and some important considerations:
Please try to upgrade GPv2 first, please check the commands to upgrade:
az storage account update -g <resource-group> -n <storage-account> --set kind=StorageV2 --access-tier=<Hot/Cool>
Set-AzStorageAccount -ResourceGroupName <resource-group> -Name <storage-account> -UpgradeToStorageV2 -AccessTier <Hot/Cool>
Check the reference document: Upgrade to a general-purpose v2 storage account
- If your GPv1 account uses ZRS and your region doesn’t support the new ZRSv2, you’ll get flagged as “ineligible to upgrade.” In that case, switch replication to LRS or GRS first. See “Regions without ZRSv2 support.”
- Make sure there are no active operations or management locks on the account (check Activity Log and Settings → Locks).
- If you’re using hierarchical namespace (Data Lake Gen2) or encryption scopes, disable those unsupported features, save, then re-enable after the upgrade if needed.
Check the below documents for more understanding:
https://learn.microsoft.com/en-us/azure/storage/common/general-purpose-version-1-zone-redundant-storage-migration-overview#regions-without-zrs-support
https://learn.microsoft.com/en-us/rest/api/storagerp/srp_error_codes_update_storage_account
I hope the above answer helps you! Please let us know if you have any further questions.
Please don't forget to "upvote" where the information provided will help you, this can be beneficial to other members of the community.
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.