From 0b801a0595c94459bdbe8fcb5b0f688c0c7d0948 Mon Sep 17 00:00:00 2001 From: Sebastian Gumprich Date: Mon, 24 Sep 2018 09:34:12 +0200 Subject: [PATCH] Update yaml-style in password-lookup example (#46046) * Update yaml-style in password-lookup example ##### SUMMARY Update the yaml-style in a password-lookup example to match best-practices. ##### ISSUE TYPE - Docs Pull Request ##### COMPONENT NAME password_lookup plugin ##### ANSIBLE VERSION devel * remove whitespace --- lib/ansible/plugins/lookup/password.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ansible/plugins/lookup/password.py b/lib/ansible/plugins/lookup/password.py index 3895e2ebd0c..6bbf44927de 100644 --- a/lib/ansible/plugins/lookup/password.py +++ b/lib/ansible/plugins/lookup/password.py @@ -69,7 +69,10 @@ EXAMPLES = """ priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL" - name: create a mysql user with a random password using only ascii letters - mysql_user: name={{ client }} password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters') }}" priv='{{ client }}_{{ tier }}_{{ role }}.*:ALL' + mysql_user: + name: "{{ client }}" + password: "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters') }}" + priv: '{{ client }}_{{ tier }}_{{ role }}.*:ALL' - name: create a mysql user with a random password using only digits mysql_user: