matrix-docker-compose/ansible/roles/base/tasks/main.yml

11 lines
176 B
YAML
Raw Normal View History

2023-09-19 10:25:34 +00:00
---
- name: Add SSH public keys
authorized_key:
user: "nschottelius"
state: present
key: "{{ item }}"
with_items: "{{ ssh_keys }}"
2023-09-19 10:48:24 +00:00
tags:
- base
- ssh