DEV Community

Cover image for Provide Storage for the IT Department Testing and Training
Fredrick Chukwuma
Fredrick Chukwuma

Posted on

Provide Storage for the IT Department Testing and Training

What is Cloud Storage

Cloud storage is Microsoft's service for storing unstructured data, allowing you to store, manage, and access data such as blobs, files, queues, and tables over the internet rather than on a local hard drive or on-premises server. In this article, I'll show you how to create a storage account for the IT department called Testing and Training. The steps are as follows;

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 group
  • Select + Create. create
  • Give your resource group a name.

rg

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

region

  • Select Review and create to validate the resource group.

review

  • Select Create to deploy the resource group.

deploy

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

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

storage

  • Select + Create.

create

  • On the Basics tab, select your Resource group.

rg

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

odo

  • 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.

storage

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.

locally

  • Be sure to Save your changes.

save

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

refresh

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

  • In the Settings section, select the Configuration blade.

configuratoin

  • Ensure Secure transfer required is Enabled.

transfer required

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

  • In the Settings section, select the Configuration blade.

configuratoin blade

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

minimal tls verion

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

  • In the Settings section, select the Configuration blade.

settings

  • Ensure Allow storage account key access is Disabled.

storage account

  • Be sure to Save your changes.

save changes

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

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

networking

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

public network access

  • Be sure to Save your changes.

save

Top comments (3)

Collapse
 
realcloudprojects profile image
SKILL.SCH

Neat!

Collapse
 
rahimah_dev profile image
Rahimah Sulayman

Nice job.

Collapse
 
fredrick_chukwuma_13220c9 profile image
Fredrick Chukwuma

🙏