Merge pull request #70 from V-Paranoiaque/feature/scsihw

Add SCSI controller support
This commit is contained in:
Grant Gongaware 2019-08-05 09:31:43 -07:00 committed by GitHub
commit 0be9504190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -122,6 +122,7 @@ resource "proxmox_vm_qemu" "prepprovision-test" {
cores = 3
sockets = 1
memory = 2560
scsihw = "lsi"
network {
id = 0
model = "virtio"

View File

@ -27,6 +27,7 @@ resource "proxmox_vm_qemu" "cloudinit-test" {
cores = "2"
sockets = "1"
memory = "2048"
scsihw = "lsi"
# Setup the disk. The id has to be unique
disk {

View File

@ -88,6 +88,11 @@ func resourceVmQemu() *schema.Resource {
Optional: true,
Default: 1,
},
"scsihw": {
Type: schema.TypeString,
Optional: true,
Default: "",
},
"network": &schema.Schema{
Type: schema.TypeSet,
Optional: true,
@ -370,6 +375,7 @@ func resourceVmQemuCreate(d *schema.ResourceData, meta interface{}) error {
Memory: d.Get("memory").(int),
QemuCores: d.Get("cores").(int),
QemuSockets: d.Get("sockets").(int),
Scsihw: d.Get("scsihw").(string),
QemuOs: d.Get("qemu_os").(string),
QemuNetworks: qemuNetworks,
QemuDisks: qemuDisks,
@ -526,6 +532,7 @@ func resourceVmQemuUpdate(d *schema.ResourceData, meta interface{}) error {
Memory: d.Get("memory").(int),
QemuCores: d.Get("cores").(int),
QemuSockets: d.Get("sockets").(int),
Scsihw: d.Get("scsihw").(string),
QemuOs: d.Get("qemu_os").(string),
QemuNetworks: qemuNetworks,
QemuDisks: qemuDisks,
@ -614,6 +621,7 @@ func resourceVmQemuRead(d *schema.ResourceData, meta interface{}) error {
d.Set("memory", config.Memory)
d.Set("cores", config.QemuCores)
d.Set("sockets", config.QemuSockets)
d.Set("scsihw", config.Scsihw)
d.Set("qemu_os", config.QemuOs)
// Cloud-init.
d.Set("ciuser", config.CIuser)