1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_collection_users.git synced 2024-08-16 10:29:50 +02:00
ansible_collection_users/roles/user/tasks/pubkeys.yml
2024-02-14 19:22:39 +01:00

12 lines
350 B
YAML

---
- name: Set SSH Public Keys for Users
become: true
ansible.posix.authorized_key:
user: "{{ item.name }}"
state: 'present'
key: "{{ item.pubkeys | default() }}"
exclusive: true
loop: "{{ _l3d_users__merged_users }}"
loop_control:
label: "user: ['{{ item.name }}']"
when: item.state | default ('present') == 'present'