Question

Difficulty: MediumCreate and Configure Virtual Machines

An administrator is managing an Azure virtual machine named VM1 in the East US region. VM1 is currently configured with the Standard_D2s_v3 size and uses a Premium SSD disk for its operating system. To reduce monthly running costs, you attempt to resize VM1 to the Standard_D2_v3 size. The resize operation fails. What is the cause of this failure?

  1. The Standard_D2_v3 size does not support Premium SSD storage.Answer
  2. B
    VM1 must be added to an Availability Set before it can be resized to a size in a different performance tier.
  3. C
    The Recovery Services Vault configured to back up VM1 is located in a different Azure region, which blocks hardware configuration updates.
  4. D
    The administrator lacks data-plane permissions, such as the Storage Blob Data Reader role, on the storage account hosting the virtual machine's OS disk.

Answer

The Standard_D2_v3 size does not support Premium SSD storage.
The correct answer is correct because Azure virtual machine sizes without the 's' suffix (such as Standard_D2_v3) do not support Premium SSD storage. If a virtual machine currently has a Premium SSD disk attached, attempting to resize it to a size that only supports Standard storage will fail. To resolve this, you must change the disk type to Standard SSD or Standard HDD before resizing.

Step-by-Step Solution

1
Analyze the source VM size and disk type
The source VM is Standard_D2s_v3 (which supports Premium storage) and has a Premium SSD OS disk.
To understand the storage requirements of the current virtual machine configuration.
2
Analyze the target VM size capability
The target VM size is Standard_D2_v3. The lack of the 's' suffix indicates that this size does not support Premium SSD storage.
To determine if the target VM size meets the hardware and storage requirements of the existing virtual machine.
3
Determine the cause of the failure
Because the virtual machine has an active Premium SSD disk attached and the target size does not support Premium storage, Azure blocks the resize operation.
To identify the technical limitation causing the resize operation to fail.

Key Concept

Virtual Machine Resizing and Storage Compatibility
Rate this question