Hi Israel Lopez
Here is the similar issue 1 and Issue 2
In both issues, they mentioned like
The error is reported from storage server, so this is a server issue.
They also mentioned that they contacted Azure Support, and were advised to re-register the Microsoft.Storage
resource provider
You can try using Azure CLI command to reregister the storage resource provider like below:
Command:
az login
az account set --subscription <your-subscription-id>
az provider register --namespace Microsoft.Storage
Here is Equivalent Powershell command:
Command:
Connect-AzAccount
Set-AzContext -SubscriptionId <...>
Register-AzResourceProvider -ProviderNamespace "Microsoft.Storage"
Please try the above commands and check again to see if it works.
Hope this answer helps! please let us know if you have any further queries. I’m happy to assist you further.
Please do not forget to "Accept the answer” and "Yes" for was this answer helpful. this can be beneficial to other community members.