DEV Community

Cover image for Empowering IT Development: Optimized Storage Solutions for Testing and Training Excellence
Oluwatobiloba Akinbobola
Oluwatobiloba Akinbobola

Posted on

Empowering IT Development: Optimized Storage Solutions for Testing and Training Excellence

Introduction

For training and prototyping, the IT department needs a flexible storage configuration. The team desired a straightforward, flexible setup that would not require backups or restoration in the event that data was overwritten, so they could experiment freely. They concentrated on developing a portable, adaptable storage system to facilitate testing and learning because the training data wasn't essential. In keeping with the department's goal of advancing progress, this arrangement not only simplifies processes but also gives team members the freedom to develop and invent.

Architecture diagram

Architecture diagram

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. Resource groups
    • Select + Create. Create
    • Give your resource group a name. For example,storagerg.
    • Select a region. Use this region throughout the project.
    • Select Review and create to validate the resource group. Review and create
    • Select Create to deploy the resource group. Create RG
  2. Create and deploy a storage account to support testing and training.
    • In the Azure portal, search for and select Storage accounts. Storage accounts
    • Select + Create. Creat Storage acc
    • On the Basics tab, select your Resource group.
    • Provide a Storage account name. The storage account name must be unique in Azure.
    • Set the Performance to Standard.
    • Select Review, and then Create. storage account basis Create
    • Wait for the storage account to deploy and then Go to resource. Go to resource ## Configure simple settings in the storage account.
  3. 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.
    • Select Locally-redundant storage (LRS) in the Redundancy drop-down.
    • Be sure to Save your changes. Save storage settings
    • Refresh the page and notice the content only exists in the primary location.
  4. The storage account should only accept requests from secure connections.
    • In the Settings section, select the Configuration blade.
    • Ensure Secure transfer required is Enabled.
  5. Developers would like the storage account to use at least TLS version 1.2.
    • In the Settings section, select the Configuration blade.
    • Ensure the Minimal TLS version is set to Version 1.2.
  6. Until the storage is needed again, disable requests to the storage account. Learn more about disabling shared keys.
    • In the Settings section, select the Configuration blade.
    • Ensure Allow storage account key access is Disabled.
    • Be sure to Save your changes. Configuration
  7. Ensure the storage account allows public access from all networks.
    • In the Security + networking section, select the Networking blade. Ensure Public network access is set to Enabled from all networks.
    • Be sure to Save your changes. Public network access

Top comments (1)

Collapse
 
etiifiok_udofiah_eb450b4b profile image
etiifiok udofiah

Awesome write up. Kudos