style 💎: Update template with new password field

Added a new parameter to the create_proxmox_debian_template.yml file to allow for a custom password when creating a Proxmox LXC instance. This change improves flexibility and security when deploying Debian-based images.
This commit is contained in:
2025-11-08 09:10:28 +01:00
parent b0318b073a
commit 93b886c634

View File

@@ -17,6 +17,7 @@
lxc_memory: 2048
lxc_net: "name=eth0,bridge=vmbr0,ip=dhcp"
lxc_rootfs_size: "8G"
lxc_password: "password"
tasks:
- block:
@@ -34,6 +35,7 @@
ansible.builtin.command: >
pct create {{ lxc_id }} {{ lxc_template }}
--hostname {{ lxc_name }}
--password '{{ lxc_password }}'
--cores {{ lxc_cores }}
--memory {{ lxc_memory }}
--ostype {{ lxc_ostype }}
@@ -71,6 +73,8 @@
name: lxc_builder
ansible_host: "{{ lxc_ip.stdout }}"
ansible_user: root
ansible_password: "{{ lxc_password }}"
ansible_ssh_common_args: '-o StrictHostKeyChecking=no'
- name: Customize Debian cloud image inside LXC