diff --git a/infrastructure/devops.tf b/infrastructure/devops.tf index 6cc4c05..3f78d30 100644 --- a/infrastructure/devops.tf +++ b/infrastructure/devops.tf @@ -37,6 +37,7 @@ resource "proxmox_virtual_environment_vm" "devops" { datastore_id = "local" size = 30 ssd = true + discard = "ignore" iothread = true interface = "scsi0" } diff --git a/infrastructure/infra.tf b/infrastructure/infra.tf index 6a737d7..d9533f1 100644 --- a/infrastructure/infra.tf +++ b/infrastructure/infra.tf @@ -37,6 +37,7 @@ resource "proxmox_virtual_environment_vm" "infra" { datastore_id = "local" size = 30 ssd = true + discard = "ignore" iothread = true interface = "scsi0" } diff --git a/infrastructure/service.tf b/infrastructure/service.tf index e5c58db..111fffb 100644 --- a/infrastructure/service.tf +++ b/infrastructure/service.tf @@ -38,6 +38,7 @@ resource "proxmox_virtual_environment_vm" "services" { size = 30 ssd = true iothread = true + discard = "ignore" interface = "scsi0" }