From 67356d287ddbacf533ff08ec60fc6c368f105e73 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sun, 16 Jul 2023 14:39:08 +0200 Subject: [PATCH] =?UTF-8?q?[PR=20#6955/8a344ea0=20backport][stable-7]=20?= =?UTF-8?q?=F0=9F=93=9D=20Add=20missing=20commas=20to=20documentation=20(#?= =?UTF-8?q?6961)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📝 Add missing commas to documentation (#6955) (cherry picked from commit 8a344ea036a09dfc2ab209da1a61d6383e61b318) Co-authored-by: Dov Benyomin Sohacheski --- plugins/lookup/onepassword.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins/lookup/onepassword.py b/plugins/lookup/onepassword.py index 28155256f6..a36e6c94e4 100644 --- a/plugins/lookup/onepassword.py +++ b/plugins/lookup/onepassword.py @@ -80,18 +80,18 @@ EXAMPLES = """ - name: Retrieve password for HAL when not signed in to 1Password ansible.builtin.debug: - var: lookup('community.general.onepassword' - 'HAL 9000' - subdomain='Discovery' + var: lookup('community.general.onepassword', + 'HAL 9000', + subdomain='Discovery', master_password=vault_master_password) - name: Retrieve password for HAL when never signed in to 1Password ansible.builtin.debug: - var: lookup('community.general.onepassword' - 'HAL 9000' - subdomain='Discovery' - master_password=vault_master_password - username='tweety@acme.com' + var: lookup('community.general.onepassword', + 'HAL 9000', + subdomain='Discovery', + master_password=vault_master_password, + username='tweety@acme.com', secret_key=vault_secret_key) """