ansible.builtin.all test – are all conditions in a list true

Note

This test plugin is part of ansible-core and included in all Ansible installations. In most cases, you can use the short plugin name all. However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.all for easy linking to the plugin documentation and to avoid conflicting with other collections that may have the same test plugin name.

Synopsis

  • This test checks each condition in a list for truthiness.

  • Same as the all Python function.

Input

This describes the input of the test, the value before is ansible.builtin.all or is not ansible.builtin.all.

Parameter

Comments

Input

list / elements=any / required

List of conditions, each can be a boolean or conditional expression that results in a boolean value.

Examples

varexpression: "{{ 3 == 3 }}"
# are all statements true?
{{ [true, booleanvar, varexpression] is all }}

Return Value

Key

Description

Return value

boolean

Returns True if all elements of the list were True, False otherwise.

Returned: success

Authors

  • Ansible Core

Hint

Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up.