DEV Community

Cover image for Provide storage for the IT department testing and traning
ijeoma omolade
ijeoma omolade

Posted on

Provide storage for the IT department testing and traning


 ### what is Azure storage
Azure Storage is a cloud storage service by Microsoft used to store large amounts of data, including text, images, and videos.
It offers different storage types like Blob, File, Table, and Queue to handle different kinds of data.

In this article I will show how to create a stroage account for the department testing and traning using this steps below.

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

  • In the Azure portal, search for and select Resource group Resource_group
  • Select + Create

Create

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

storagerg

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

(US)central us

  • Select Review and create to validate the resource group.

review & create

2.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.
    Storagerg

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

jpop247

  • Set the Performance to Standard.

standard

-Select Review, and then Create.

review & create

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

resource

3.Configure simple settings in the storage account

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

Data management  & Redundancy

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

click Locally-redundant storage

Locally-redundant storage
- Be sure to **Save your changes.**

save

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

primary location

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.

Enabled

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

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

Version 1.2.

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

In the Settings section, select the Configuration blade.

  • Ensure Allow storage account key access is Disabled.

disabled

  • Be sure to Save your changes.

save

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

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

security & Networking

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

Enabled

  • Be sure to Save your changes.

save

enabled

Top comments (0)