Update playbooks_lookups.rst
fix doublequote being used in place of the colonpull/4420/head
parent
63e59a9825
commit
1037c211d9
|
@ -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
|
- name: create a mysql user with a random password using many different char sets
|
||||||
mysql_user:
|
mysql_user:
|
||||||
name: "{{ client }}"
|
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"
|
priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL"
|
||||||
|
|
||||||
# (...)
|
# (...)
|
||||||
|
|
Loading…
Reference in New Issue