0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-03 12:02:57 +00:00
terraform-provider-proxmox/docs/resources/role.md
2020-10-22 19:10:40 -04:00

33 lines
511 B
Markdown

---
layout: page
title: Role
permalink: /resources/role
nav_order: 8
parent: Resources
---
# Resource: Role
Manages a role.
## Example Usage
```
resource "proxmox_virtual_environment_role" "operations_monitoring" {
role_id = "operations-monitoring"
privileges = [
"VM.Monitor",
]
}
```
## Arguments Reference
* `privileges` - (Required) The role privileges.
* `role_id` - (Required) The role identifier.
## Attributes Reference
There are no additional attributes available for this resource.