An Azure service that stores unstructured data in the cloud as blobs.
Hi @ Eric Miyahara,
Welcome to Microsoft Q&A Platform.
It sounds like you’re running into a generic “unable to create storage account” error when you try to provision an Azure Blob Storage account. That usually comes down to one of a few common issues, name conflicts, subscription or resource-group locks, missing permissions or policies, or even the Microsoft.Storage provider not being registered.
Here’s a quick rundown of what you can try:
Run the built-in diagnostic
- In the Azure portal, go to Create a resource > Storage account and click Diagnose and solve problems.
- Let the “We are running a quick check on the storage account” insight complete and see if it flags anything.
Check for name conflicts:
- Storage account names must be globally unique. If the name is taken, you’ll get a
StorageAccountAlreadyTakenerror. - Try a different name or use the name-conflict checker.
Verify resource locks:
- Make sure there are no Delete or Read-only locks on your subscription or resource group that might block new resource creation.
- Remove any locks via the resource locks documentation.
Confirm you have the right permissions
- Ensure your user or service principal has at least Contributor on the target subscription or resource group.
- Check for any deny assignments that could be blocking creation: https://learn.microsoft.com/azure/role-based-access-control/deny-assignments-portal
Register the Microsoft. Storage provider
- If the Storage resource provider isn’t registered, you can’t create any storage accounts.
- In PowerShell or Azure CLI:
az provider register --namespace Microsoft.StorageMore details: https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers
Try CLI or PowerShell:
- Sometimes the portal masks the underlying error. create using the Azure CLI: https://learn.microsoft.com/azure/storage/common/storage-account-create?tabs=azure-cli
Please
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.