ansible/roles/root_keys/tasks/main.yml
Markus Hauschild 0de11eb6ed
All checks were successful
continuous-integration/drone/push Build is passing
gw-admin-ssh-keys: rename to root_keys
2020-10-06 10:14:45 +02:00

9 lines
170 B
YAML

---
- name: Deploy Admin Keys from vault_root_sshkeys
authorized_key:
user: root
state: present
key: "{{ item }}"
with_items: "{{ vault_root_sshkeys }}"