mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-25 21:05:40 +00:00
22 lines
619 B
HCL
22 lines
619 B
HCL
resource "proxmox_virtual_environment_user" "operations_automation" {
|
|
comment = "Managed by Terraform"
|
|
password = "a-strong-password"
|
|
user_id = "operations-automation@pve"
|
|
}
|
|
|
|
resource "proxmox_virtual_environment_role" "operations_monitoring" {
|
|
role_id = "operations-monitoring"
|
|
|
|
privileges = [
|
|
"VM.GuestAgent.Audit",
|
|
]
|
|
}
|
|
|
|
resource "proxmox_virtual_environment_acl" "operations_automation_monitoring" {
|
|
user_id = proxmox_virtual_environment_user.operations_automation.user_id
|
|
role_id = proxmox_virtual_environment_role.operations_monitoring.role_id
|
|
|
|
path = "/vms/1234"
|
|
propagate = true
|
|
}
|