add audio device windows
All checks were successful
OpenTofu Automation / deploy (push) Successful in 21s

This commit is contained in:
Matt Reeves 2024-11-13 15:36:27 -05:00
parent 1e11125bcc
commit ec1df9cacf

View file

@ -3,7 +3,7 @@ resource "proxmox_virtual_environment_vm" "Windows11" {
node_name = "pve2" node_name = "pve2"
vm_id = 250 vm_id = 250
tags = ["tofu"] tags = ["tofu"]
started = false started = true
bios = "ovmf" bios = "ovmf"
machine = "q35" machine = "q35"
@ -38,9 +38,13 @@ resource "proxmox_virtual_environment_vm" "Windows11" {
tpm_state { tpm_state {
datastore_id = "Fast500Gb" datastore_id = "Fast500Gb"
version = "v2.0" version = "v2.0"
} }
operating_system { operating_system {
type = "win11" type = "win11"
} }
audio_device {
enabled = true
}
} }