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

Icinga doc fix (#1495) (#1496)

* Document it is a dictionary to reduce confusion.

* Add variable example

(cherry picked from commit 757427cadf)

Co-authored-by: Erinn Looney-Triggs <erinn@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2020-12-16 08:06:43 +01:00 committed by GitHub
parent a16164cb72
commit 7f92aa0854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ options:
variables:
type: dict
description:
- List of variables.
- Dictionary of variables.
extends_documentation_fragment:
- url
'''
@ -116,6 +116,8 @@ EXAMPLES = '''
state: present
name: "{{ ansible_fqdn }}"
ip: "{{ ansible_default_ipv4.address }}"
variables:
foo: "bar"
delegate_to: 127.0.0.1
'''