DEV Community

Cover image for Update and Maintain Resources in Azure - Prepare
Fredrick Chukwuma
Fredrick Chukwuma

Posted on

Update and Maintain Resources in Azure - Prepare

Updating and maintaining resources in Microsoft Azure is a fundamental aspect of effective cloud infrastructure management. It ensures that deployed services remain secure, reliable, and optimized for performance. Azure provides a range of tools and management interfaces, such as the Azure Portal, Azure CLI, and automation services, to help administrators efficiently monitor, update, and manage cloud resources.

Regular updates and maintenance activities include applying security patches, updating virtual machines and operating systems, managing storage and networking configurations, and monitoring resource health and performance. These practices help prevent vulnerabilities, improve system stability, and ensure that cloud workloads continue to operate efficiently.

By consistently maintaining Azure resources, organizations can reduce operational risks, optimize costs, and ensure that their cloud environment aligns with best practices for security, scalability, and performance. This proactive approach is essential to maintaining a well-managed, resilient cloud infrastructure.

This project will be sectioned into parts. In this article, I will only prepare the resources needed for the project. And in the next articles, I will;

  • Update a virtual network and subnet.
  • Manage virtual machines.
  • Control storage access.
  • Manage resource tags and locks.

Create a resource group

  • From the Azure Portal, search for and select Resource groups under services

rg

  • Select Create.

create

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

rg create

  • Select Review + create.

create

Create a virtual network with one subnet

  • Search for and select virtual networks under services.

vnet

  • Select Create.

create

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

vnet name

  • Select Review + create.

review and create

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

complete

Create a virtual machine

  • Search for and select virtual machines under services.

vm

  • Select Create and then select Virtual machine

create

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

rg

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

Ivm name

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

Ubuntu

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

password

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

username

  • Enter a password for the admin account.
  • Confirm the password for the admin account.

password

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

review

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

create

  • Select Home to return to the Azure portal home page.

deployed

Create a Storage account

  • Search for and select Storage accounts under services.

storage accounts

  • Select Create.

create

  • 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.

storage acc name

  • Select Review + create.

review

  • Select Create.

create

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

deployed

In conclusion, updating and maintaining resources through the Azure Portal is an important practice for ensuring the stability, security, and optimal performance of services hosted on Microsoft Azure. The portal provides a centralized graphical interface that allows administrators to easily monitor resource health, apply updates, modify configurations, and manage services in real time. By regularly maintaining resources through the Azure Portal, organizations can improve operational efficiency, reduce potential system issues, and ensure their cloud infrastructure remains reliable and aligned with best practices.
In the next article, I will show you how to update the virtual network.

Top comments (0)