mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
12 lines
390 B
HCL
12 lines
390 B
HCL
data "proxmox_virtual_environment_role" "example" {
|
|
role_id = "${proxmox_virtual_environment_role.example.id}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_role_example_privileges" {
|
|
value = "${data.proxmox_virtual_environment_role.example.privileges}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_role_example_role_id" {
|
|
value = "${data.proxmox_virtual_environment_role.example.id}"
|
|
}
|