Create Storage
How to Create an Azure Storage Account
A storage account is an Azure Resource Manager resource. Resource Manager is the deployment and management service for Azure. For more information, see Azure Resource Manager overview.
Every Resource Manager resource, including an Azure storage account, must belong to an Azure resource group. A resource group is a logical container for grouping your Azure services. When you create a storage account, you have the option to either create a new resource group, or use an existing resource group. This how-to shows how to create a new resource group.
1. Sign in to the Azure Portal
Go to https://portal.azure.com and sign in with your Azure credentials.
2. Create a Storage Account
- In the left-hand menu, click on "Storage accounts"
- Click “+ Create” at the top
3. Basics Tab
- Subscription: Select your Azure subscription
- Resource Group: Select an existing one or click “Create new”
- Storage account name: Enter a unique name (lowercase letters and numbers only)
- Region: Choose the region closest to your users
- Performance: Standard (default)
- Redundancy: Choose based on your durability needs (e.g., LRS or GRS)
Click “Next” or “Review + create”
4. (Optional) Configure Advanced Settings
You can enable features like secure transfer, allow/disallow public access, etc.
5. Review and Create
- Click “Review + create”
- After validation, click “Create”
For more information visit Here.