diff --git a/proxmox/config_qemu.go b/proxmox/config_qemu.go index ad26b834..9fcde684 100644 --- a/proxmox/config_qemu.go +++ b/proxmox/config_qemu.go @@ -368,6 +368,9 @@ func (config ConfigQemu) mapToApiValues(currentConfig ConfigQemu) (rebootRequire if config.Onboot != nil { params["onboot"] = *config.Onboot } + if config.Protection != nil { + params["protection"] = *config.Protection + } if config.QemuOs != "" { params["ostype"] = config.QemuOs }