What is an Azure Storage Account?

An Azure Storage account provides a unique namespace in Azure for your data. This namespace is accessible from anywhere in the world over HTTP or HTTPS. A storage account contains all of your Azure Storage data objects, including:

The type of storage account you choose depends on your specific needs. Azure offers several types, each optimized for different scenarios:

Types of Storage Accounts

Azure Storage offers various types of storage accounts, each with its own characteristics and intended use cases:

Key Features and Benefits

Note: For most new applications, it's recommended to use General-purpose v2 (GPv2) accounts, as they offer the broadest range of features and the lowest entry price for various scenarios.

Getting Started

To begin using Azure Storage, you'll need an Azure subscription. You can create a storage account directly from the Azure portal, using PowerShell, or via the Azure CLI.

Here's a simplified example of creating a storage account using the Azure CLI:


az storage account create \
    --name mystorageaccountname \
    --resource-group myresourcegroup \
    --location westus2 \
    --sku Standard_LRS \
    --kind StorageV2
            

Once your storage account is created, you can start creating containers and uploading your data.

Learn More

Explore the following sections to dive deeper into specific Azure Storage services: