Update playbooks_lookups.rst

fix doublequote being used in place of the colon
pull/4420/head
Richlv 2017-10-08 20:52:30 +03:00 committed by Brian Coca
parent 63e59a9825
commit 1037c211d9
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ Starting in Ansible version 1.4, password accepts a "chars" parameter to allow d
- name: create a mysql user with a random password using many different char sets
mysql_user:
name: "{{ client }}"
password" "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}"
password: "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}"
priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL"
# (...)