DEV Community

Cover image for Provide storage for the IT department testing and training
Izuabueke Davidson  Anujulu
Izuabueke Davidson Anujulu

Posted on

Provide storage for the IT department testing and training

What is Azure storage?

Azure Storage, offered by Microsoft Azure, is a cloud storage solution that provides a range of services for storing and controlling data in the cloud. It is compatible with various forms of data, such as structured, unstructured, and semi-structured data, and is built for superior availability, durability, and scalability.

Below are the essential elements of Azure Storage:

  1. Blob Storage: Employed to store vast quantities of disorganized data, like pictures, films, and backups. It provides different access tiers to help with managing costs.

  2. Data Storage (Files): Offers completely managed file shares in the cloud, accessible through the SMB (Server Message Block) protocol. This is beneficial for applications requiring shared file storage.

  3. Queue Storage: A service that stores and retrieves messages between application components, enabling asynchronous communication.

  4. Table Storage: An NoSQL key-value database for partially-structured information, offering quick retrieval and expansion for high-performance storage needs.

  5. Storage for Disks: Utilized for virtual machine (VM) disks, providing both managed and unmanaged disks for Azure VMs.

  6. Azure Data Lake Storage is a dedicated service designed for big data analysis, offering a hierarchical namespace and enhancements for extensive analytics tasks.

Azure Storage is connected with various Azure services, allowing users to create applications that can scale and withstand challenges. It provides features such as encryption, redundancy choices, and access control to guarantee data security and compliance.

Here are the steps to set up storage for the IT department's testing and training activities:

Step 1. Create a resource group and a storage account.
A resource group is a container used to organize and manage related resources in cloud computing environments.

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

Resource groups

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

Resource groups name

  • Select a region. Use this region throughout the project. Select a region
  • Select Review and Create to validate the resource group.

Review and Create

  • Select Create to deploy the resource group.

Resource groups created

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

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

search for and select Storage accounts

  • Select + Create.

Select + Create

  • On the Basics tab, select your Resource groups select your Resource groups
  • Provide a Storage account name. The storage account name must be unique in Azure.

Storage account name.

  • Set the Performance to Standard.

Performance

  • Select Review, and then Create.

 Review, and then Create

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

Configure simple settings in the storage account.

Step 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. Select Locally-redundant storage (LRS)
  • Be sure to Save your changes. changes saved
  • Refresh the page and notice the content only exists in the primary location. location primary only. Step2. The storage account should only accept requests from secure connections.
  • In the Settings section, select the Configuration blade.

select the Configuration

  • Ensure the Secure transfer required is Enabled.

Secure transfer Enabled.
Step3. Developers would like the storage account to use at least TLS version 1.2.

  • In the Settings section, select the Configuration blade.

select the Configuration

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

Step 4. 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

select the Configuration

  • Ensure Allow storage account key access is Disabled. Disabled Allow storage account key access
  • Be sure to Save your changes.

Save your changes

Top comments (0)