Attach a data disk to a Linux VM – Azure Virtual Machines | Microsoft Learn
resource vm 'Microsoft.Compute/virtualMachines@2021-11-01' = {
name: vmName
location: location
tags:tags
properties: {
hardwareProfile: {
vmSize: vmSize
}
storageProfile: {
osDisk: {
createOption: 'FromImage'
managedDisk: {
storageAccountType: osDiskType
}
}
imageReference: imageReference[ubuntuOSVersion]
// 2. Add a data disk start
dataDisks:[
{
diskSizeGB:8
lun:0
createOption:'Empty'
name:'${vmName}-dataDiskLun0'
// It must be mounted after
// https://learn.microsoft.com/en-us/azure/virtual-machines/linux/attach-disk-portal?tabs=ubuntu
}
]
// 2. Add a datadisk end
}
azure-automation/README.md at main · spawnmarvel/azure-automation · GitHub