Can't create standard blob storage account

Mahadev, Rakesh [HAEA] 100 Reputation points
2024-03-20T03:20:58.3233333+00:00

Hello All,

I'm not getting the option to create standard blob storage account. Instead I have the option to create standard general purpose v2 and premium block blob, files and page blob storage accounts.

Is there any way to create standard blob storage account?

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,944 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,639 questions
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,094 questions
0 comments No comments
{count} votes

Accepted answer
  1. TP 83,971 Reputation points
    2024-03-20T03:47:24.91+00:00

    Hi Rakesh,

    You can't create legacy blob storage account via the portal, but you can create it via PowerShell using Cloud Shell. Below is sample code (resource group needs to exist before running):

    New-AzStorageAccount -ResourceGroupName myresourcegroup -Name myblobstorageaccount -Location westus -SkuName Standard_LRS -Kind BlobStorage -AccessTier Hot
    

    Create a storage account

    https://learn.microsoft.com/en-us/azure/storage/common/storage-account-create?tabs=azure-powershell

    Please click Accept Answer and upvote if the above was helpful.

    Thanks.

    -TP

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful