From 8a344ea036a09dfc2ab209da1a61d6383e61b318 Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Sun, 16 Jul 2023 13:51:21 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20missing=20commas=20to=20do?= =?UTF-8?q?cumentation=20(#6955)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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) """