blob: 3397909892dca3b2a41af0b0d8fc7e72edc271ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: Test ssh_keys
hosts: test
remote_user: root
roles:
- ssh_keys
vars:
# ssh_key_strings:
# - { user: 'jdoe', string: 'a public key here' }
# - { user: 'alice', string: 'public key here' }
# ssh_key_files:
# - { user: 'jdoe', file: '../../../company/pubkeys/jdoe.pubkeys' }
# - { user: 'alice', file: '../../../company/pubkeys/alice.pubkey' }
|