ansible-role-unix-users/templates/authorized_keys.j2

8 lines
174 B
Plaintext
Raw Normal View History

2022-05-09 08:17:07 +00:00
#jinja2: lstrip_blocks: True
#
# {{ ansible_managed }}
#
2022-07-19 15:54:56 +00:00
{% for key in unix_user.value.ssh.authorized_keys %}
{{ lookup('file', 'ssh/authorized_keys/' + key) }}
2022-05-09 08:17:07 +00:00
{% endfor %}