0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 02:52:58 +00:00

Update example

This commit is contained in:
Dan Petersen 2019-12-29 07:33:34 +01:00
parent 1176ef9ee4
commit 5d5f1c1835
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ resource "proxmox_virtual_environment_file" "cloud_init_config" {
node_name = "${data.proxmox_virtual_environment_datastores.example.node_name}"
source_raw {
data = <<EOF
data = <<EOF
#cloud-config
chpasswd:
list: |

View File

@ -1,6 +1,6 @@
resource "proxmox_virtual_environment_group" "example" {
acl {
path = "/vms/100"
path = "/vms/${proxmox_virtual_environment_vm.example.id}"
role_id = "${proxmox_virtual_environment_role.example.id}"
}

View File

@ -1,6 +1,6 @@
resource "proxmox_virtual_environment_user" "example" {
acl {
path = "/"
path = "/vms/${proxmox_virtual_environment_vm.example.id}"
propagate = true
role_id = "PVEVMAdmin"
}