Each time I try and create a disk resource it always defaults to 2 Mib. No matter what the combination I use.
resource "xenserver_vdi" vdi" {
name_label = "Virtual_Disk_Interface"
name_description = "A VDI on Local storage for the first domain controller"
sr_uuid = data.xenserver_sr.sr.data_items[0].uuid
Virtual size has a bug in it and will not allow anything to be inputted. You will need to manually configure the disk size on the VM post setup.
This will allow the machine to boot.
virtual_size = 64 * 1024 * 1024 * 1024
}
Each time I try and create a disk resource it always defaults to 2 Mib. No matter what the combination I use.
resource "xenserver_vdi" vdi" {
name_label = "Virtual_Disk_Interface"
name_description = "A VDI on Local storage for the first domain controller"
sr_uuid = data.xenserver_sr.sr.data_items[0].uuid
Virtual size has a bug in it and will not allow anything to be inputted. You will need to manually configure the disk size on the VM post setup.
This will allow the machine to boot.
virtual_size = 64 * 1024 * 1024 * 1024
}