docs: update proxmox role privs and default vm user

This commit updates the documentation and Terraform variables to reflect recent changes in the Proxmox environment setup.

- `docs/proxmox-setup.md`: Added `VM.GuestAgent.Audit` and `VM.GuestAgent.FileRead` to the required privileges list and the CLI command example. This ensures Terraform can properly interact with the QEMU Guest Agent.
- `terraform/prod/variables.tf`: Set a default value ("damien") for the `username` variable in the `virtual_machines` object to simplify configuration for the primary user.
This commit is contained in:
darnodo
2025-12-07 14:04:55 +01:00
parent 4623674632
commit 51bcd79e05
2 changed files with 10 additions and 10 deletions

View File

@@ -59,7 +59,7 @@ variable "virtual_machines" {
disk_format = optional(string, "raw")
network_bridge = optional(string, "vmbr0")
network_model = optional(string, "virtio")
username = optional(string)
username = optional(string, "damien")
on_boot = optional(bool, true)
tags = optional(list(string), [])