Skip to content

Resource: proxmox_virtual_environment_group

Manages a user group.

Warning

Deprecation: the inline acl block is deprecated. Manage group ACLs via the dedicated proxmox_acl resource instead. The acl block is no longer auto-populated from a cluster-wide fetch on refresh or import; existing configurations using acl blocks continue to work, but new code should use proxmox_acl.

Example Usage

resource "proxmox_virtual_environment_group" "operations_team" {
  comment  = "Managed by Terraform"
  group_id = "operations-team"
}

Argument Reference

  • acl - (Optional, Deprecated) The access control list (multiple blocks supported). Use proxmox_acl instead.
  • comment - (Optional) The group comment.
  • group_id - (Required) The group identifier.

Attribute Reference

  • members - The group members as a list of username@realm entries

Import

Instances can be imported using the group_id, e.g.,

terraform import proxmox_virtual_environment_group.operations_team operations-team