From c33a1e730bdb4a0b937aa3ec82c715384bcfd366 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 8 Dec 2025 10:16:02 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Update=20SSH=20key=20vari?= =?UTF-8?q?able=20references=20to=20join=20public=20keys=20with=20newline?= =?UTF-8?q?=20in=20testing.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/testing.yml b/tasks/testing.yml index 075f7ef..c6adecc 100644 --- a/tasks/testing.yml +++ b/tasks/testing.yml @@ -33,7 +33,7 @@ proxmox_template_vm_ubuntu_ciuser: "{{ ciuser }}" # From Ansible vault proxmox_template_vm_ubuntu_cipassword: "{{ cipassword }}" # From Ansible vault # proxmox_template_vm_ubuntu_sshkeys: "{{ lookup('file', lookup('env', 'HOME') + '/.ssh/id_rsa.pub') }}" # gets your ssh key from /home/user/.ssh/id_rsa.pub -- customize this to your needs - proxmox_template_vm_ubuntu_sshkeys: "{{ ssh_public_keys }}" # gets your ssh key from /home/user/.ssh/id_rsa.pub -- customize this to your needs + proxmox_template_vm_ubuntu_sshkeys: "{{ ssh_public_keys | join('\n') }}" # gets your ssh key from /home/user/.ssh/id_rsa.pub -- customize this to your needs proxmox_template_vm_ubuntu_vlan: 50 # Optional customizations for fedora @@ -43,7 +43,7 @@ proxmox_template_vm_fedora_cores: 1 proxmox_template_vm_fedora_ciuser: "{{ ciuser }}" # From Ansible vault proxmox_template_vm_fedora_cipassword: "{{ cipassword }}" # From Ansible vault - proxmox_template_vm_fedora_sshkeys: "{{ ssh_public_keys }}" # gets your ssh key from /home/user/.ssh/id_rsa.pub -- customize this to your needs + proxmox_template_vm_fedora_sshkeys: "{{ ssh_public_keys | join('\n') }}" # gets your ssh key from /home/user/.ssh/id_rsa.pub -- customize this to your needs proxmox_template_vm_fedora_vlan: 50 # Set to true if you have slow storage to avoid file locks