0
0
Azurecloud~30 mins

Azure Portal walkthrough - Mini Project: Build & Apply

Choose your learning style9 modes available
Azure Portal walkthrough
📖 Scenario: You are a new cloud user who wants to explore the Azure Portal. The Azure Portal is a web interface where you can create and manage cloud resources like virtual machines, storage accounts, and databases.Imagine you want to organize your resources by creating a resource group first, then add a storage account inside it.
🎯 Goal: Build a simple Azure resource setup by creating a resource group and a storage account inside it using the Azure Portal configuration syntax.
📋 What You'll Learn
Create a resource group named MyResourceGroup in the eastus region
Create a storage account named mystorageacct123 inside MyResourceGroup
Set the storage account kind to StorageV2
Set the storage account SKU to Standard_LRS
💡 Why This Matters
🌍 Real World
Organizing cloud resources in Azure Portal is essential for managing and deploying applications efficiently.
💼 Career
Cloud engineers and administrators often create and manage resource groups and storage accounts as foundational tasks in Azure.
Progress0 / 4 steps
1
Create the resource group
Create a resource group called MyResourceGroup in the eastus location using the Azure resource configuration syntax.
Azure
Need a hint?

Think of a resource group as a folder to keep your cloud resources organized. You need to give it a name and a location.

2
Define the storage account configuration
Create a dictionary called storage_account with the keys name, resource_group, kind, and sku. Set name to mystorageacct123, resource_group to MyResourceGroup, kind to StorageV2, and sku to Standard_LRS.
Azure
Need a hint?

The storage account needs to know which resource group it belongs to and what type and performance level it should have.

3
Link storage account to resource group
Add a key called location to the storage_account dictionary and set it to the same location as the resource_group location.
Azure
Need a hint?

For better performance and management, place resources in the same location as their resource group.

4
Complete the Azure resource setup
Create a list called azure_resources that contains the resource_group and storage_account dictionaries to represent your Azure setup.
Azure
Need a hint?

Think of this list as your cloud project containing all your Azure resources grouped together.