DEV Community

Cover image for Provision of Storage for IT department Testing and Training
Adejumoke Akinnuwesi
Adejumoke Akinnuwesi

Posted on

Provision of Storage for IT department Testing and Training

What is Azure Storage?

Azure storage is Microsoft's cloud storage solution. It allows storage of unstructured data, pdfs, file shares etc.

The following steps in this article outlines how I was able to create storage for the department's testing and training.

Create a resource group and a storage account

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

resource_group

  • Select + Create

+Create

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

resource group_name

  • Select a region. Use this region throughout the project

 region_name

  • Select Create to deploy the resource group

create_deploy

result

Create and deploy a storage account to support testing and training

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

storage_Account

  • Select + Create +Create
  • On the Basics tab, select your Resource group

resource group_select

  • Provide a Storage account name. The storage account name must be unique in Azure. storage_name
  • Set the Performance to Standard

performance_set

  • Select Review, and then Create review_create
  • Wait for the storage account to deploy and then Go to resource

deploy_storage account

resource space

Configure simple settings in the storage account

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

redundancy table

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

The storage account should only accept requests from secure connections

  • In the Settings section, select the Configuration blade

configuration blade

  • Ensure Secure transfer required is Enabled

secure transfer_enable

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

  • In the Settings section, select the Configuration blade configuration table
  • Ensure the Minimal TLS version is set to Version 1.2. minimal_tls

Ensure the storage account allows public access from all networks.

  • In the Security + networking section, select the Networking blade networking blade
  • Ensure Public network access is set to Enabled from all networks.

Public network access image
-Be sure to Save your changes.

save_job

Top comments (0)