9 lines
170 B
YAML
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 }}"
|