📝 Add missing commas to documentation (#6955)

pull/6964/head
Dov Benyomin Sohacheski 2023-07-16 13:51:21 +03:00 committed by GitHub
parent 9abdc5a995
commit 8a344ea036
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -80,18 +80,18 @@ EXAMPLES = """
- name: Retrieve password for HAL when not signed in to 1Password - name: Retrieve password for HAL when not signed in to 1Password
ansible.builtin.debug: ansible.builtin.debug:
var: lookup('community.general.onepassword' var: lookup('community.general.onepassword',
'HAL 9000' 'HAL 9000',
subdomain='Discovery' subdomain='Discovery',
master_password=vault_master_password) master_password=vault_master_password)
- name: Retrieve password for HAL when never signed in to 1Password - name: Retrieve password for HAL when never signed in to 1Password
ansible.builtin.debug: ansible.builtin.debug:
var: lookup('community.general.onepassword' var: lookup('community.general.onepassword',
'HAL 9000' 'HAL 9000',
subdomain='Discovery' subdomain='Discovery',
master_password=vault_master_password master_password=vault_master_password,
username='tweety@acme.com' username='tweety@acme.com',
secret_key=vault_secret_key) secret_key=vault_secret_key)
""" """