Azure Disk Storage

Azure Disk Storage provides managed disk volumes for Azure Virtual Machines. Whether you need Standard HDD, Standard SSD, or Premium SSD, Azure Disk Storage offers flexible options for every workload.

Azure Disk Storage

Virtual machines use disks to store an operating system, applications, and data in Azure. All virtual machines have at least two disks: a Windows operating system disk and a temporary disk. Both the operating system disk and the image are virtual hard disks (VHDs). An Azure storage account stores them. Virtual machines can also have one or more data disks with the VHD extension.

Temporary Disk:  It comes associated with the virtual machine residing in the underlying hardware that provisions the server. So, the temporary disk is not in a storage account. It resides in the underlying hardware like the server.

Types of Disks

Different types of disks offered by Azure:

Unmanaged Disks:  Unmanaged Disks represent a traditional disk type that VMs historically used. With them, we can create our storage account and specify this storage account when we create the disk. We should not put too many disks in the same storage account. This would result in throttling the VMs.

Managed Disks:  These handle the creation/management of the storage account in the background. They ensure that we don’t have to worry about storage account scalability limits. We specify the disk size and performance tier (standard/premium), and Azure creates and manages the disk for us.

  • Standard hard drives: These offer cost-effective storage. They can replicate locally or be geo-redundant with primary and secondary data centers.
  • Standard SSDs: These handle the same type of workloads as standard HDDs. However, they offer more consistent performance and reliability than HDDs. They are suitable for applications such as web servers that do not require high IOPS on the disks.
  • Premium SSDs: These are based on SSDs. They offer high-performance disk support for intensive I/O loads. Premium SSDs are mainly used in production and database servers. So, if we are hosting a database on a particular server, the premium SSD will be a good option.

Microsoft recommends using managed disks for all new virtual machines and converting unmanaged disks to managed disks.

Disk Backups

When we have this OS disk or data disk associated with the virtual machine, we must make a regular backup of it so that we can recover the data in case of a risky scenario.

Azure provides Azure Backup Service , which you can install as a backup extension on a particular VM. Ultimately, the backup extension is based on the frequency you have specified. It will take the snapshot of the OS disk and the data disk. And also, we can create application-consistent snapshots and file-consistent snapshots. These snapshots will go to the Recovery Service Vault. The Recovery Service Vault will store these snapshots. In case of any problem, we can always recover the VM using these snapshots. And if we want to have geo-redundant capacity, then we can have this Recovery Service Vault in another region.

So, for example, if our VM is located in Northern Europe, we can have a recovery service vault located in Western Europe. This way, we can protect our workloads from regional failures as well.

🛡️ Free: M365 Tenant Security Audit Checklist

17-page PDF with 50 hands-on checks covering Entra ID, Exchange Online, SharePoint, Teams, Intune, license waste, and audit logging. PowerShell commands included. Built from 60+ real tenant audits at Wintive.

📥 Download the free checklist →

For a comprehensive overview of all Azure storage and infrastructure services, see our Microsoft Azure tutorial which covers virtual machines, networking, storage, and backup in one guide.

Choose the Right Azure Disk Type for Your Workload

Selecting the right disk tier has a direct impact on performance and cost. Ultra Disk delivers sub-millisecond latency and is suited for SAP HANA, top-tier databases, and transaction-heavy workloads. Premium SSD v2 offers configurable IOPS and throughput without the cost of Ultra Disk, making it the best choice for most production databases. Standard SSD fits web servers and lightly used business applications, while Standard HDD is cost-effective for backups and archival data.

Resize and Migrate Azure Disks

You can upgrade a managed disk to a higher tier without downtime in most cases. Go to the disk in the Azure portal → Configuration → change the disk type. For downgrades or cross-region migrations, you need to deallocate the VM first. Always snapshot the disk before any migration as a recovery point. See our guide on Azure Backup for disk snapshot best practices.

Storage Account Setup in Azure

Storage Account Setup in Azure

Blob Storage in Azure

Blob Storage in Azure

Backup Service in Azure

Backup Service in Azure

Deploy Virtual Machines in Azure

Deploy Virtual Machines in Azure

Microsoft Azure Tutorial for Beginners

Microsoft Azure Tutorial for Beginners

Scroll to Top