summaryrefslogtreecommitdiffstats
path: root/lib/ansible/plugins/test/contains.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /lib/ansible/plugins/test/contains.yml
parentInitial commit. (diff)
downloadansible-core-upstream.tar.xz
ansible-core-upstream.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/ansible/plugins/test/contains.yml')
-rw-r--r--lib/ansible/plugins/test/contains.yml49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/ansible/plugins/test/contains.yml b/lib/ansible/plugins/test/contains.yml
new file mode 100644
index 0000000..68741da
--- /dev/null
+++ b/lib/ansible/plugins/test/contains.yml
@@ -0,0 +1,49 @@
+DOCUMENTATION:
+ name: contains
+ author: Ansible Core
+ version_added: "2.4"
+ short_description: does the list contain this element
+ description:
+ - Checks the supplied element against the input list to see if it exists within it.
+ options:
+ _input:
+ description: List of elements to compare.
+ type: list
+ elements: raw
+ required: True
+ _contained:
+ description: Element to test for.
+ type: raw
+ required: True
+EXAMPLES: |
+ # simple expression
+ {{ listofthings is contains('this') }}
+
+ # as a selector
+ - action: module=doessomething
+ when: lacp_groups|selectattr('interfaces', 'contains', 'em1')|first).master
+ vars:
+ lacp_groups:
+ - master: lacp0
+ network: 10.65.100.0/24
+ gateway: 10.65.100.1
+ dns4:
+ - 10.65.100.10
+ - 10.65.100.11
+ interfaces:
+ - em1
+ - em2
+
+ - master: lacp1
+ network: 10.65.120.0/24
+ gateway: 10.65.120.1
+ dns4:
+ - 10.65.100.10
+ - 10.65.100.11
+ interfaces:
+ - em3
+ - em4
+RETURN:
+ _value:
+ description: Returns C(True) if the specified element is contained in the supplied sequence, C(False) otherwise.
+ type: boolean