From 777c8cd299b24d8d13022f3ec19dc03783c12faf Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Tue, 26 Aug 2025 12:20:01 +0000 Subject: [PATCH] Update proxmox.tf --- proxmox.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox.tf b/proxmox.tf index 3981b89..d120a4f 100644 --- a/proxmox.tf +++ b/proxmox.tf @@ -34,7 +34,7 @@ resource "proxmox_virtual_environment_file" "cloud_init_yaml" { #cloud-config users: - default - - name: testeuser + - name: ${var.proxmox_VM_username} groups: sudo shell: /bin/bash sudo: ALL=(ALL) NOPASSWD:ALL @@ -43,7 +43,7 @@ resource "proxmox_virtual_environment_file" "cloud_init_yaml" { chpasswd: list: | - testeuser:testepassword + ${var.proxmox_VM_username}:${var.proxmox_VM_password} expire: false package_update: true