diff --git a/proxmox.tf b/proxmox.tf index 2c819cc..190d3f4 100644 --- a/proxmox.tf +++ b/proxmox.tf @@ -50,8 +50,8 @@ resource "proxmox_virtual_environment_file" "vm_user_data" { local.deep_merge( yamldecode(file("${path.module}/cloud-init-base.yaml")), yamldecode(templatefile("${path.module}/cloud-init-vm.yaml.tftpl", { - extra_packages = try(each.value.extra_packages, []) - extra_users = try(each.value.extra_users, []) + extra_packages = try(each.value.extra_packages, []), + extra_users = try(each.value.extra_users, []), extra_runcmd = try(each.value.extra_runcmd, []) })) )