Skip to content

Commit 561b1f1

Browse files
Create an Azure Storage account
1 parent 52ab11b commit 561b1f1

5 files changed

+100
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Choose an account creation tool
2+
3+
There are several tools that create a storage account. Your choice is typically based on if you want a GUI and whether you need automation.
4+
5+
Available tools
6+
The available tools are:
7+
8+
- Azure portal
9+
- Azure CLI (Command-line interface)
10+
- Azure PowerShell
11+
- Management client libraries
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Choose your account settings
2+
3+
The storage account settings we've already covered apply to the data services in the account. Here, we discuss the three settings that apply to the account itself, rather than to the data stored in the account:
4+
5+
- Name
6+
- Deployment model
7+
- Account kind
8+
These settings affect how you manage your account and the cost of the services within it.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
The decision on how many storage accounts you need in Azure depends on several factors, including your application requirements, performance considerations, and management preferences. Here are some considerations to help you decide:
2+
3+
## Isolation and Segmentation:
4+
5+
If you want to isolate different types of data or workloads, you might consider using separate storage accounts. For example, you could have one storage account for your application's blobs and another for tables or queues.
6+
7+
## Performance:
8+
9+
Each storage account has its own performance characteristics, such as transaction rates and throughput. If your application has varying performance requirements for different data types, you might want to use multiple storage accounts to optimize performance.
10+
11+
## Scalability:
12+
13+
Azure Storage accounts have scalability limits. If you anticipate exceeding the scalability limits of a single storage account, you might need to distribute your data across multiple accounts.
14+
15+
## Geographic Distribution:
16+
17+
If your application is deployed across multiple regions, you may want to consider using separate storage accounts for each region to optimize data access and minimize latency.
18+
Security and Access Control:
19+
20+
If you need different security settings or access controls for various components of your application, using separate storage accounts can provide finer-grained control.
21+
Backup and Disaster Recovery:
22+
23+
Depending on your backup and disaster recovery strategy, you might choose to use separate storage accounts for redundancy and data protection.
24+
25+
## Cost Management:
26+
27+
Storage costs in Azure are associated with individual storage accounts. If you have specific cost management or billing requirements, creating separate storage accounts can help in tracking and managing costs more granularly.
28+
29+
## Development and Testing:
30+
31+
During development and testing, you might find it convenient to have separate storage accounts for different environments (e.g., development, testing, production) to avoid interference and ensure data isolation.
32+
33+
## Service Level Agreements (SLA):
34+
35+
Consider the SLA requirements for your different data types or workloads. Separate storage accounts might be necessary if specific SLA requirements differ significantly.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Exercise - Create a storage account using the Azure portal
2+
3+
Create a storage account using Azure portal
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Introduction
2+
3+
Creating an Azure Storage account in Microsoft Azure is a fundamental step in setting up a cloud-based storage solution for your applications and data. Azure Storage provides scalable, secure, and highly available storage services for various types of data, including blobs, files, queues, tables, and disks. Here's a step-by-step introduction on how to create an Azure Storage account:
4+
5+
## Step 1: Sign in to the Azure Portal
6+
7+
Open your web browser and navigate to the Azure Portal.
8+
Sign in with your Azure account credentials.
9+
10+
## Step 2: Navigate to the Storage Accounts service
11+
12+
In the Azure Portal, click on the "Create a resource" button (+) on the left-hand side.
13+
In the "Search the Marketplace" box, type "Storage account" and select "Storage account - blob, file, table, queue."
14+
15+
## Step 3: Configure the basic settings
16+
17+
Click the "Create" button to start configuring the basic settings for your storage account.
18+
In the "Project details" section, choose your Azure subscription, create or select a resource group, and choose a unique name for your storage account. The name must be globally unique.
19+
Select the geographic region for your storage account. Choose the region that is closest to your intended users or complies with your data residency requirements.
20+
Choose the performance tier: Standard or Premium. Standard is suitable for most general-purpose scenarios.
21+
22+
## Step 4: Configure advanced settings (Optional)
23+
24+
In the "Advanced" tab, you can configure additional settings such as replication, access tier, and network settings. The default options are often suitable for many scenarios.
25+
You can choose the replication option that suits your availability and durability requirements.
26+
27+
## Step 5: Review and create
28+
29+
Click the "Review + create" tab to review your configuration settings.
30+
Ensure that all the settings are correct, and there are no validation errors.
31+
Click the "Create" button to start the deployment of your storage account.
32+
33+
## Step 6: Monitor deployment
34+
35+
Once the deployment starts, you will be redirected to the deployment page.
36+
Monitor the deployment status in the Azure Portal. It may take a few minutes for the deployment to complete.
37+
38+
## Step 7: Access your storage account
39+
40+
Once the deployment is successful, navigate to the "Resource groups" section in the Azure Portal.
41+
Open the resource group you specified earlier and click on your newly created storage account.
42+
You can access and manage your storage account settings, keys, and services from the storage account dashboard.
43+
Congratulations! You've successfully created an Azure Storage account. You can now start using it to store and manage your data in the Azure cloud.

0 commit comments

Comments
 (0)