Added one extra example in the authorized_key module. (#3637)
This commit is contained in:
parent
366d52cf18
commit
d34c5dfd69
1 changed files with 11 additions and 3 deletions
|
@ -124,6 +124,14 @@ EXAMPLES = '''
|
|||
- authorized_key: user=root key="{{ item }}" state=present exclusive=yes
|
||||
with_file:
|
||||
- public_keys/doe-jane
|
||||
|
||||
# Copies the key from the user who is running ansible to the remote machine
|
||||
- set_fact:
|
||||
my_ssh_key: "{{ lookup('env','HOME') }}/.ssh/id_rsa.pub"
|
||||
|
||||
- authorized_key: user=ubuntu key="{{ lookup('file', my_ssh_key) }}"
|
||||
sudo: yes
|
||||
|
||||
'''
|
||||
|
||||
# Makes sure the public key line is present or absent in the user's .ssh/authorized_keys.
|
||||
|
|
Loading…
Reference in a new issue