fixed tf issues
Some checks failed
continuous-integration/drone Build was killed
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-10-27 12:44:11 +02:00
parent f667406033
commit 2a5e6995a0
2 changed files with 11 additions and 2 deletions

View File

@@ -37,7 +37,8 @@ resource "proxmox_virtual_environment_vm" "devops" {
datastore_id = "local" datastore_id = "local"
size = 30 size = 30
ssd = true ssd = true
interface = "virtio0" iothread = true
interface = "scsi0"
} }
initialization { initialization {

View File

@@ -23,7 +23,7 @@ resource "proxmox_virtual_environment_vm" "nextcloud_aio" {
hotplugged = 0 hotplugged = 0
numa = false numa = false
sockets = 1 sockets = 1
type = "x86-64-v2-AES" type = "host"
units = 1024 units = 1024
} }
@@ -34,6 +34,14 @@ resource "proxmox_virtual_environment_vm" "nextcloud_aio" {
type = "4m" type = "4m"
} }
disk {
datastore_id = "local"
ssd = true
size = 900
file_format = "qcow2"
interface = "scsi0"
}
initialization { initialization {
datastore_id = "local" datastore_id = "local"
interface = "ide0" interface = "ide0"