Enable ACPI
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
resource "pass_password" "arch_password" {
|
resource "pass_password" "arch_password" {
|
||||||
for_each = toset([for key,value in var.vm_guests: key])
|
for_each = toset([for key,value in var.vm_guests: key])
|
||||||
password = random_password.this[each.value].result
|
password = random_password.this[each.value].result
|
||||||
path = "ansible/become-passwords/${each.value}"
|
path = "ansible/become-passwords/${each.value}.${var.local_domain}"
|
||||||
}
|
}
|
||||||
@@ -20,7 +20,7 @@ resource "proxmox_virtual_environment_pool" "this" {
|
|||||||
|
|
||||||
resource "proxmox_virtual_environment_vm" "this" {
|
resource "proxmox_virtual_environment_vm" "this" {
|
||||||
for_each = var.vm_guests
|
for_each = var.vm_guests
|
||||||
acpi = false
|
acpi = true
|
||||||
agent {
|
agent {
|
||||||
enabled = true
|
enabled = true
|
||||||
timeout = "10m"
|
timeout = "10m"
|
||||||
@@ -33,6 +33,8 @@ resource "proxmox_virtual_environment_vm" "this" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
audio_device {
|
audio_device {
|
||||||
|
device = "intel-hda"
|
||||||
|
driver = "spice"
|
||||||
enabled = false
|
enabled = false
|
||||||
}
|
}
|
||||||
bios = "ovmf"
|
bios = "ovmf"
|
||||||
|
|||||||
Reference in New Issue
Block a user