0
0
Azurecloud~30 mins

Why Azure Storage matters - See It in Action

Choose your learning style9 modes available
Why Azure Storage matters
📖 Scenario: You are working for a small company that wants to keep its important files safe and accessible from anywhere. You decide to use Azure Storage to store these files securely in the cloud.
🎯 Goal: Build a simple Azure Storage setup that creates a storage account, a container, and uploads a file. This will help you understand why Azure Storage is important for keeping data safe and easy to reach.
📋 What You'll Learn
Create an Azure Storage account with a unique name
Create a blob container inside the storage account
Upload a sample file to the blob container
Set the container access level to private
💡 Why This Matters
🌍 Real World
Azure Storage is used by companies to keep files, backups, and data safe and accessible from anywhere in the world.
💼 Career
Knowing how to set up and manage Azure Storage is a key skill for cloud administrators and developers working with Microsoft Azure.
Progress0 / 4 steps
1
Create an Azure Storage account
Write the Azure CLI command to create a storage account named mystorageaccount12345 in the resource group myResourceGroup located in eastus region with the Standard_LRS SKU.
Azure
Need a hint?

Use az storage account create with the correct parameters for name, resource group, location, and SKU.

2
Create a blob container
Write the Azure CLI command to create a blob container named mycontainer inside the storage account mystorageaccount12345.
Azure
Need a hint?

Use az storage container create with the container name and storage account name.

3
Upload a file to the container
Write the Azure CLI command to upload a file named example.txt from your local machine to the blob container mycontainer in the storage account mystorageaccount12345.
Azure
Need a hint?

Use az storage blob upload with the container name, file path, blob name, and storage account name.

4
Set container access level to private
Write the Azure CLI command to set the access level of the blob container mycontainer in the storage account mystorageaccount12345 to private.
Azure
Need a hint?

Use az storage container set-permission with the container name, storage account name, and --public-access off to make it private.