This commit is contained in:
Santiago Lo Coco 2024-04-14 00:33:52 +02:00
parent 7614575dbd
commit b0af407737
3 changed files with 16 additions and 2 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
.vscode
inventory
ansible.cfg

View File

@ -40,3 +40,8 @@ argument_specs:
required: false
default: false
description: Boolean value indicating whether SSH key pairs should be generated for passwordless authentication.
private_key_path:
type: str
required: no
default: /tmp
description: "Path to the private key. If not provided, the default path will be /tmp."

View File

@ -16,17 +16,24 @@
- name: Determine key path
set_fact:
key_path: "{{ (private_key_path | default('/tmp')) + '/id_rsa' }}"
key_path: "{{ (private_key_path | default('/tmp')) | regex_replace('/$','') }}/id_rsa"
- name: Generate SSH key pairs for local users
community.crypto.openssh_keypair:
path: "{{ key_path }}_{{ item.name }}"
loop: "{{ accounts_with_home }}"
when: not ansible_check_mode and item.passwordless | default(false) | bool
when: item.passwordless | default(false) | bool
delegate_to: localhost
run_once: true
become: false
- name: Ensure .ssh directory exists
ansible.builtin.file:
path: "{{ item.home }}/.ssh"
state: directory
loop: "{{ accounts_with_home }}"
when: item.passwordless | default(false) | bool
- name: Copy public keys to authorized_keys for passwordless authentication
ansible.builtin.copy:
content: "{{ lookup('file', key_path + '_' + item.name + '.pub') }}"