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:
@@ -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), [])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user