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

推荐订阅源

V
V2EX
J
Java Code Geeks
月光博客
月光博客
博客园_首页
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
B
Blog RSS Feed
博客园 - 聂微东
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
量子位
Martin Fowler
Martin Fowler
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗

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
Providing Storage for the IT Testing and Training Departm...
SULIAT · 2026-04-24 · via DEV Community
Cover image for Providing Storage for the IT Testing and Training Department : A Step-by-Step Guide.

SULIAT

What is Azure Storage

Azure storage is Microsoft's-managed cloud-based storage service that allows individuals and organizations to store, manage, and access data such as files, Blobs and more. Azure Storage is used in applications such as serving videos, pictures, game content, PDFs, and any other content stored on a user's computer. It is known for its highly scalable, reliable, secure, and durable capabilities, and is accessible from anywhere in the world. Azure Storage always stores multiple copies of your data to protect it from planned and unplanned events.
Setting up Azure Storage is fast and easy. The setup has to be done within an Azure Storage account under your Azure subscription. This can be done by adding a new storage account using the Azure portal, meaning you need to be logged into the Azure portal to be able to use the various services offered by Azure.

In this article, I will walk through the process of creating a storage account for the Testing and Training IT department using the following steps:

Create a resource group and a storage account.

1. Create and deploy a resource group to hold all your project resources.

  • In the Azure portal, search for and select Resource groups.

step 1

  • Select + Create.

step 2

  • Give your resource group a name. For example, storagerg.

step 3

  • Select a region. Use this region throughout the project.

step 4

  • Select Review and create to validate the resource group.

step 5

  • Select Create to deploy the resource group.

step 6

2. Create and deploy a storage account to support testing and training.

  • In the Azure portal, search for and select Storage accounts.

step 2a

  • Select + Create.

step 2b

  • On the Basics tab, select your Resource group.

step 2c

  • Provide a Storage account name. The storage account name must be unique in Azure.

step 2d

  • Set the Performance to Standard.

step 2e

  • Select Review, and then Create.

step 2f

  • Wait for the storage account to deploy and then Go to resource.

step 2g

Configure simple settings in the storage account.

1. The data in this storage account doesn’t require high availability or durability. A lowest cost storage solution is desired.

  • In your storage account, in the Data management section, select the Redundancy blade.

redundancy

  • Select Locally-redundant storage (LRS) in the Redundancy drop-down.

LRS

  • Be sure to Save your changes.

changes

  • Refresh the page and notice the content only exists in the primary location.

location

2. The storage account should only accept requests from secure connections.

  • In the Settings section, select the Configuration blade.

settings

  • Ensure Secure transfer required is Enabled.

secure

3. Developers would like the storage account to use at least TLS version 1.2.

  • In the Settings section, select the Configuration blade.

step 3a

  • Ensure the Minimal TLS version is set to Version 1.2.

ensure

4. Until the storage is needed again, disable requests to the storage account.

  • In the Settings section, select the Configuration blade.

configuration

  • Ensure Allow storage account key access is Disabled.

storage

  • Be sure to Save your changes

changes

5. Ensure the storage account allows public access from all networks.

  • In the Security + networking section, select the Networking blade.

network

  • Ensure Public network access is set to** Enabled from all networks.**

network

  • Be sure to Save your changes.