aboutsummaryrefslogtreecommitdiffstats
path: root/roles/proxmox_hypervisor/templates/var/lib
diff options
context:
space:
mode:
Diffstat (limited to 'roles/proxmox_hypervisor/templates/var/lib')
-rw-r--r--roles/proxmox_hypervisor/templates/var/lib/vz/snippets/userdata.yaml.j217
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/proxmox_hypervisor/templates/var/lib/vz/snippets/userdata.yaml.j2 b/roles/proxmox_hypervisor/templates/var/lib/vz/snippets/userdata.yaml.j2
new file mode 100644
index 0000000..75283cf
--- /dev/null
+++ b/roles/proxmox_hypervisor/templates/var/lib/vz/snippets/userdata.yaml.j2
@@ -0,0 +1,17 @@
+#cloud-config
+manage_etc_hosts: False
+users:
+ - name: root
+ passwd: {{ root_password | password_hash("sha512", root_password_salt | default("")) }}
+ lock_passwd: False
+ ssh_authorized_keys:
+{% for key in root_authorized_keys %}
+ - {{ key }}
+{% endfor %}
+chpasswd:
+ expire: False
+disable_root: False
+ssh_pwauth: False
+package_update: False
+package_upgrade: False
+preserve_hostname: true