diff --git a/proxmox/resource_vm_qemu.go b/proxmox/resource_vm_qemu.go index 4dbbe4bc..9a02aedd 100755 --- a/proxmox/resource_vm_qemu.go +++ b/proxmox/resource_vm_qemu.go @@ -3167,12 +3167,6 @@ func schema_DiskBackup() *schema.Schema { Type: schema.TypeBool, Optional: true, Default: true, - // Convert previous integer values of 0/1 to booleans - StateFunc: func(val interface{}) string { - if val.(string) == "0" {return "false"} - if val.(string) == "1" {return "true"} - return val.(string) - }, } }