fix some ansible-lint errors

This commit is contained in:
Sergey Malyuk
2025-12-12 18:35:37 +03:00
parent c40b4928f7
commit 3f4556f3b2
7 changed files with 50 additions and 49 deletions

View File

@@ -8,7 +8,7 @@
mode: "0700"
- name: "Generate an ed25519 SSH key pair with 100 KDF rounds"
register: ssh_key_pair
register: borgmatic_ssh_key_pair
community.crypto.openssh_keypair:
type: ed25519
path: "{{ ssh_key_path }}"
@@ -21,5 +21,5 @@
delegate_to: "{{ repo_server_inventory_hostname }}"
ansible.posix.authorized_key:
user: "{{ repo_server_user }}"
key: "{{ ssh_key_pair.public_key }}"
key: "{{ borgmatic_ssh_key_pair.public_key }}"
state: present