Fix minor syntax error in authorized_key module doc (#4491)

This commit is contained in:
Ali Ok 2016-08-27 17:52:03 +03:00 committed by Matt Clay
parent ccddeb8cdc
commit 1e411f9551

View file

@ -126,7 +126,7 @@ EXAMPLES = '''
- public_keys/doe-jane
# Copies the key from the user who is running ansible to the remote machine user ubuntu
- authorized_key: user=ubuntu key="{{ lookup('file', lookup('env','HOME') + "/.ssh/id_rsa.pub") }}"
- authorized_key: user=ubuntu key="{{ lookup('file', lookup('env','HOME') + '/.ssh/id_rsa.pub') }}"
become: yes
'''