Showcase the new-style lookup plugin access in the authorized_key docs rather than the old-style $FILE
This commit is contained in:
parent
778cb826d7
commit
e67a8852e9
1 changed files with 2 additions and 2 deletions
|
@ -65,10 +65,10 @@ author: Brad Olson
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Example using key data from a local file on the management machine
|
# Example using key data from a local file on the management machine
|
||||||
authorized_key: user=charlie key='$FILE(/home/charlie/.ssh/id_rsa.pub)
|
authorized_key: user=charlie key="{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
|
||||||
|
|
||||||
# Using alternate directory locations:
|
# Using alternate directory locations:
|
||||||
authorized_key: user=charlie key='$FILE(/home/charlie/.ssh/id_rsa.pub)' sshdir='/etc/ssh/authorized_keys/charlie' manage_dir=no
|
authorized_key: user=charlie key="{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}" sshdir='/etc/ssh/authorized_keys/charlie' manage_dir=no
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# Makes sure the public key line is present or absent in the user's .ssh/authorized_keys.
|
# Makes sure the public key line is present or absent in the user's .ssh/authorized_keys.
|
||||||
|
|
Loading…
Reference in a new issue