8 lines
295 B
YAML
8 lines
295 B
YAML
---
|
|
# Authorize this key to this users ~/.ssh/authorized_keys file
|
|
- name: Adding {{ user }} SSH key to {{ ssh_into }} users ~/.ssh/authorized_keys
|
|
authorized_key:
|
|
user: '{{ item }}'
|
|
key: "{{ lookup('file', '../roles/user/keys/' + user + '.key.pub') }}"
|
|
with_items: '{{ ssh_into }}'
|