add ansible support

This commit is contained in:
Nico Schottelius 2023-09-19 12:25:34 +02:00
commit d61af93d85
4 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,7 @@
---
- name: Add SSH public keys
authorized_key:
user: "nschottelius"
state: present
key: "{{ item }}"
with_items: "{{ ssh_keys }}"