AI News Hub Logo

AI News Hub

Setting Up Your First Azure Storage Account

DEV Community
Emmanuel Banjo

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. What's a Resource Group? Let's Create One quickly Open the Azure Portal and type Resource groups in the search bar Click the + Create button 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 then Create Creating Your Storage Account Search for Storage accounts in the Azure Portal Click + 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 Then Create Wait a minute for it to deploy, then click Go to resource Done! You now have your own storage account in the cloud. What's Redundancy? LRS **(Locally Redundant Storage): Makes 3 copies in one location - cheapest option : 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 Change the dropdown to Locally-redundant storage (LRS) Click Save That's it! You just cut your storage costs significantly. 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) Go to Settings → Configuration Make sure Secure transfer required says Enabled That's it. Now all your data travels encrypted. Use Modern Security (TLS 1.2) not old ones that can be faked." Still in Settings → Configuration Check that Minimum TLS version is set to Version 1.2 Control Who Can Access It In Settings → Configuration Find Allow storage account key access and set it to Disabled Click Save You can always turn this back on when you need it. Go to Security + networking → Networking Make sure Public network access is set to Enabled from all networks Click Save 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. What is Azure Storage? - Official Microsoft docs Azure Free Account - Get free credits to practice with