A company is deploying an application on Azure Virtual Machines. The deployment has the following requirements:
- A storage solution to host the operating system disks for the virtual machines, where the company maintains full administrative control over operating system patching and configurations.
- A shared storage volume that can be mounted simultaneously by multiple virtual machines using the Server Message Block (SMB) protocol.
Which combination of Azure storage services should the company select?
- AAzure Files for the operating system disks, and Azure Blob Storage (Archive tier) for the shared volume
- BAzure Disk Storage for both the operating system disks and the shared volume, assuming Microsoft will manage the operating system patching and configuration of the virtual machines
- Azure Disk Storage for the operating system disks, and Azure Files for the shared volumeAnswer
- DAzure Blob Storage (Archive tier) for the operating system disks, and Azure Disk Storage for the shared volume
Answer
Azure Disk Storage for the operating system disks, and Azure Files for the shared volume
The correct solution uses Azure Disk Storage for the OS disks because it provides persistent block storage required for hosting VM operating systems, where the customer retains administrative control over patching and configuration. It uses Azure Files for the shared volume because it is a managed file share service that natively supports the SMB protocol for concurrent access by multiple VMs.
Step-by-Step Solution
Key Concept
Selecting appropriate Azure Storage options (Disk Storage vs. Files) based on OS hosting requirements, access protocols, and the shared responsibility model.