Enable ACPI

This commit is contained in:
2026-09-08 14:16:43 -04:00
parent b4c05a9b76
commit d895d34be7
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
resource "pass_password" "arch_password" {
for_each = toset([for key,value in var.vm_guests: key])
password = random_password.this[each.value].result
path = "ansible/become-passwords/${each.value}"
path = "ansible/become-passwords/${each.value}.${var.local_domain}"
}
+3 -1
View File
@@ -20,7 +20,7 @@ resource "proxmox_virtual_environment_pool" "this" {
resource "proxmox_virtual_environment_vm" "this" {
for_each = var.vm_guests
acpi = false
acpi = true
agent {
enabled = true
timeout = "10m"
@@ -33,6 +33,8 @@ resource "proxmox_virtual_environment_vm" "this" {
}
}
audio_device {
device = "intel-hda"
driver = "spice"
enabled = false
}
bios = "ovmf"