惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
爱范儿
爱范儿
Vercel News
Vercel News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Setting Up Your First Azure Storage Account
Emmanuel Ban · 2026-04-25 · via DEV Community

Introduction

Starting with Azure can feel overwhelming. There are so many options, settings, and configurations that it's hard to know where to begin. But here's the good news: setting up a storage account doesn't have to be complicated.
I recently went through the process of creating my first Azure Storage Account for a learning project, and I want to share what I learned. This guide will walk you through each step in plain language.
We'll create a storage account that's perfect for learning and testing i.e one that's secure, won't rack up unexpected charges, and follows good practices from the start. No prior Azure experience needed!

Step 1: Creating a Resource Group

What's a Resource Group?
Think of a resource group like a folder on your computer. Just like you'd put all your vacation photos in one folder, you put all your related Azure resources in one resource group. It makes everything easier to organize and manage.
The cool part? When you delete the resource group later, everything inside gets deleted too. No hunting down individual items. Perfect for learning projects!

Let's Create One quickly

  • Open the Azure Portal and type Resource groups in the search bar

An image showing where to locate the search button in Azure portal

  • Click the + Create button

An image showing where to locate the create button in Azure portal

  • Give it a simple name like my-storage-project or learning-storage
  • Pick a region (like East US or West Europe)just choose one close to you
  • Click Review and create

Review and create

  • then Create

Create

Creating Your Storage Account
Now let's create the actual storage account

  • Search for Storage accounts in the Azure Portal

storage account

  • Click + Create

create

  • Select the resource group you just created
  • Give your storage account a name (it needs to be unique across all of Azure, so try something like mystoragelearn123)
  • Keep Performance set to Standard (this is the cheaper option and perfect for learning)
  • Click Review + Create

Review + Create

  • Then Create

Create

Wait a minute for it to deploy, then click Go to resource

Done! You now have your own storage account in the cloud.

Step 2: Choosing How Your Data is Stored

What's Redundancy?
When you store data in Azure, it automatically makes copies in case something goes wrong. The question is: how many copies do you need?

LRS **(Locally Redundant Storage): Makes 3 copies in one location - cheapest option
**ZRS, GRS, GZRS
: More copies in more places - costs more money

For learning and testing, LRS is perfect. You save money and still have backup copies.

Setting it to LRS

  • In your storage account, find Data management on the left menu, then click Redundancy

Storage account

  • Change the dropdown to Locally-redundant storage (LRS)
  • Click Save

save

That's it! You just cut your storage costs significantly.

Step 3: Making It Secure

Now let's make sure your storage is secure. Don't worry, it's just a few simple settings.

  • Use HTTPS (Keep Your Data Safe in Transit)
    You want all your data to travel securely over the internet, like using HTTPS on a website.

    • Go to Settings → Configuration
    • Make sure Secure transfer required says Enabled

secure transfer

That's it. Now all your data travels encrypted.

  • Use Modern Security (TLS 1.2)
    This is like saying "only let in people with new security badges,

    not old ones that can be faked."

    • Still in Settings → Configuration
    • Check that Minimum TLS version is set to Version 1.2

TLS version

  • Control Who Can Access It
    If you're not using the storage right now, you can turn off access:

    • In Settings → Configuration
    • Find Allow storage account key access and set it to Disabled
    • Click Save

Disable access

You can always turn this back on when you need it.

Step 4: Allow Network Access

  • Go to Security + networking → Networking
  • Make sure Public network access is set to Enabled from all networks
  • Click Save

security

public access

Congratulations! You just set up your first Azure Storage Account. I know it might have seemed like a lot of steps, but you did it!

Did this guide help you? Drop a comment and let me know how your setup went! And if you got stuck anywhere, ask away. we're all learning together.

Helpful Links

What is Azure Storage? - Official Microsoft docs
Azure Free Account - Get free credits to practice with