mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-03 12:02:57 +00:00
33 lines
511 B
Markdown
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.
|