DEV Community

Cover image for Azure Infrastructure Setup Guide: Creating Resource Groups, Virtual Networks, Virtual Machines, and Storage Accounts
Oladimeji Zainab
Oladimeji Zainab

Posted on

Azure Infrastructure Setup Guide: Creating Resource Groups, Virtual Networks, Virtual Machines, and Storage Accounts

Introduction

In this guide, we will walk through the process of setting up essential Azure resources required for a cloud infrastructure environment. The setup includes creating a Resource Group, Virtual Network, Virtual Machine, and Storage Account using the Microsoft Azure Portal.

These foundational resources are critical building blocks for deploying, managing, and scaling cloud workloads effectively. By following the step-by-step instructions outlined in this guide, you will gain hands-on experience with Azure resource provisioning and develop a solid understanding of core cloud infrastructure components.

  • Create a resource group

setup

  • Select Create.

setup

  • Enter guided-project-rg in the Resource group name field.

setup

  • The Region field will automatically populate. Leave the default value.

setup

  • Select Review + create.

setup

  • Select Create.

setup

  • Return to the home page of the Azure portal by selecting Home.

setup

Create a virtual network with one subnet

  • From the Azure portal home page, in the search box, enter virtual networks.

setup

  • Select Create

setup

  • Scroll down to the Instance details section and enter guided-project-vnet for the Virtual network name.

setup

  • Select Review + create.

setup

  • Select Create.

setup

  • Wait for the screen to refresh and show Your deployment is complete.

setup

Create a virtual machine

  • From the Azure portal home page, in the search box, enter virtual machines.

setup

  • Select Create and then select Virtual machine

setup

setup

  • Select guided-project-rg for the Resource group.

setup

  • Enter guided-project-vm for the Virtual machine name.

setup

  • For the Image, select one of the Ubuntu Server options. (For example, Ubuntu Server 24.04 LTS - x64 Gen2)

setup

  • Continue further on the Basics page to the Administrator account section and Select Password for authentication type.

setup

  • Enter guided-project-admin for the admin Username.

setup

  • Enter a password for the admin account.

setup

  • Confirm the password for the admin account.

setup

  • Leave the rest of the settings as default settings. You can review the settings if you like, but shouldn’t change any.

setup

  • Select Review + create

setup

  • Select Create to confirm the resource cost and create the virtual machine.

setup

Create a Storage account

  • From the Azure portal home page, in the search box, enter storage accounts.

setup

  • Select Create

setup

  • Scroll down to the Instance details section and enter a name for the storage account. Storage accounts must be globally unique, so you may have to try a few different times to get a storage account name.

setup

  • Select Review + create.

setup

  • Select Create.

setup

  • Wait for the screen to refresh and show Your deployment is complete.

setup

Conclusion

Congratulations on successfully completing the setup process. In this exercise, you provisioned key Azure resources, including a Resource Group, Virtual Network, Virtual Machine, and Storage Account. These services form the foundation of many cloud-based solutions and are essential for deploying, managing, and securing applications in Microsoft Azure.

Through this practical implementation, you have gained valuable experience navigating the Azure Portal and creating core infrastructure components. This knowledge serves as a strong foundation for more advanced cloud engineering, DevOps, and infrastructure management tasks as you continue your Azure learning journey.

Top comments (0)