1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Improve readability of example. (#1648)

This commit is contained in:
Felix Fontein 2021-01-19 08:24:25 +01:00 committed by GitHub
parent 7d20ff7cac
commit 25e246bdc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,9 +77,11 @@ EXAMPLES = r"""
tasks:
- ansible.builtin.debug:
msg: >
the password is {{(secret['items']
| items2dict(key_name='slug',
value_name='itemValue'))['password']}}
the password is {{
(secret['items']
| items2dict(key_name='slug',
value_name='itemValue'))['password']
}}
"""
from ansible.errors import AnsibleError, AnsibleOptionsError