From 1c1b2aa29f8548fb701108d9d114c539c6a30d1e Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 4 Nov 2025 17:46:54 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20password=20var?= =?UTF-8?q?iable=20in=20setupacdc.yml=20to=20use=20environment=20variable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the password variable in the setupacdc.yml file to use an environment variable instead of a hardcoded value, making it easier to manage and secure sensitive information. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 6b47c69..e86f85a 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -46,7 +46,7 @@ pct create {{ container_id }} {{ container_template }} \ -ostype {{ container_ostype }} \ -hostname {{ container_hostname }} \ - -password 123456 \ + -password {{ container_password }} \ -ssh-public-keys {{ ssh_keys_file }} \ -cores {{ container_cores }} \ -memory {{ container_memory }} \