Fix for documentation playbook loops

if key is used with lookup parameter that needs to be in quotes as
otherwise it will load "ssh-rsa" "<the key>" "<the comment>" as separate
values and fail with "this module requires key=value arguments"
This commit is contained in:
Patrick Craston 2013-11-27 11:59:11 +00:00
parent 7be13faae8
commit 20c5b7f800

View file

@ -128,7 +128,7 @@ It might happen like so::
- user: name={{ item.name }} state=present generate_ssh_key=yes
with_items: users
- authorized_key: user={{ item.0.name }} key={{ lookup('file', item.1) }}
- authorized_key: user={{ item.0.name }} key="{{ lookup('file', item.1) }}"
with_subelements:
- users
- authorized