DEV Community

Cover image for Providing Storage for the IT Testing and Training Department : A Step-by-Step Guide.
SULIAT
SULIAT

Posted on

Providing Storage for the IT Testing and Training Department : A Step-by-Step Guide.

What is Azure Storage

Azure storage is Microsoft's-managed cloud-based storage service that allows individuals and organizations to store, manage, and access data such as files, Blobs and more. Azure Storage is used in applications such as serving videos, pictures, game content, PDFs, and any other content stored on a user's computer. It is known for its highly scalable, reliable, secure, and durable capabilities, and is accessible from anywhere in the world. Azure Storage always stores multiple copies of your data to protect it from planned and unplanned events.
Setting up Azure Storage is fast and easy. The setup has to be done within an Azure Storage account under your Azure subscription. This can be done by adding a new storage account using the Azure portal, meaning you need to be logged into the Azure portal to be able to use the various services offered by Azure.

In this article, I will walk through the process of creating a storage account for the Testing and Training IT department using the following steps:

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.

step 1

  • Select + Create.

step 2

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

step 3

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

step 4

  • Select Review and create to validate the resource group.

step 5

  • Select Create to deploy the resource group.

step 6

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

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

step 2a

  • Select + Create.

step 2b

  • On the Basics tab, select your Resource group.

step 2c

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

step 2d

  • Set the Performance to Standard.

step 2e

  • Select Review, and then Create.

step 2f

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

step 2g

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.

LRS

  • Be sure to Save your changes.

changes

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

location

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

  • In the Settings section, select the Configuration blade.

settings

  • Ensure Secure transfer required is Enabled.

secure

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

  • In the Settings section, select the Configuration blade.

step 3a

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

ensure

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

  • In the Settings section, select the Configuration blade.

configuration

  • Ensure Allow storage account key access is Disabled.

storage

  • Be sure to Save your changes

changes

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

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

network

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

network

  • Be sure to Save your changes.

Top comments (0)