How to handle data disk concept in Azure devtest labs. suppose users wants to save data in any of the disk like E/D/I drives.

praju116 1 Reputation point
2020-07-29T15:28:30.973+00:00

How to handle data disk concept in Azure devtest labs. suppose users wants to save data in any of the disk like E/D/I drives. Next time if user creates new VM the data which saved in first VM should reflected in the newly/latest created machine.
How can achieve this scenarisl

  1. Devtest Lab ( Name : VM1. Attach a data disk (D drive). User saved some information.) After 1 month user created new VM2 under same devtest Lab. Can the user get the previous VM1 D drive data in VM2.
Azure DevTest Labs
Azure DevTest Labs
An Azure service that is used for provisioning development and test environments.
256 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. kobulloc-MSFT 23,496 Reputation points Microsoft Employee
    2020-07-30T08:22:31.14+00:00

    If you want to store information as a user, Azure Managed Disks is the recommended disk storage for Azure VMs (as opposed to managed images if you were looking to create multiple VMs):

    Azure Managed Disks are the new and recommended disk storage offering for use with Azure virtual machines for persistent storage of data. You can use multiple Managed Disks with each virtual machine. We offer four types of Managed Disks — Ultra Disk, Premium SSD Managed Disks, Standard SSD Managed Disks, Standard HDD Managed Disks.

    https://learn.microsoft.com/en-us/azure/virtual-machines/windows/managed-disks-overview#disk-roles

    A data disk is a managed disk that's attached to a virtual machine to store application data, or other data you need to keep. Data disks are registered as SCSI drives and are labeled with a letter that you choose. Each data disk has a maximum capacity of 32,767 gibibytes (GiB). The size of the virtual machine determines how many data disks you can attach to it and the type of storage you can use to host the disks.

    Additional Resources:

    0 comments No comments