Merge pull request #7802 from victorcoder/devel
Fixes password lookup docs
This commit is contained in:
commit
9c7ea82ad2
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
|
|||
|
||||
# create a mysql user with a random password using only ascii letters:
|
||||
- mysql_user: name={{ client }}
|
||||
password="{{ lookup('password', '/tmp/passwordfile chars=ascii') }}"
|
||||
password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters') }}"
|
||||
priv={{ client }}_{{ tier }}_{{ role }}.*:ALL
|
||||
|
||||
# create a mysql user with a random password using only digits:
|
||||
|
@ -83,7 +83,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
|
|||
|
||||
# create a mysql user with a random password using many different char sets:
|
||||
- mysql_user: name={{ client }}
|
||||
password="{{ lookup('password', '/tmp/passwordfile chars=ascii,numbers,digits,hexdigits,punctuation') }}"
|
||||
password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}"
|
||||
priv={{ client }}_{{ tier }}_{{ role }}.*:ALL
|
||||
|
||||
(...)
|
||||
|
|
Loading…
Reference in a new issue