mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-04 21:14:05 +00:00
17 lines
583 B
HCL
17 lines
583 B
HCL
resource "proxmox_virtual_environment_access_group" "example" {
|
|
comment = "Created by Terraform"
|
|
group_id = "terraform-provider-proxmox-example"
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_access_group_example_comment" {
|
|
value = proxmox_virtual_environment_access_group.example.comment
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_access_group_example_id" {
|
|
value = proxmox_virtual_environment_access_group.example.id
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_access_group_example_members" {
|
|
value = proxmox_virtual_environment_access_group.example.members
|
|
}
|