summaryrefslogtreecommitdiffstats
path: root/lib/ansible/plugins/filter/bool.yml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/filter/bool.yml')
-rw-r--r--lib/ansible/plugins/filter/bool.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/ansible/plugins/filter/bool.yml b/lib/ansible/plugins/filter/bool.yml
new file mode 100644
index 0000000..86ba353
--- /dev/null
+++ b/lib/ansible/plugins/filter/bool.yml
@@ -0,0 +1,28 @@
+DOCUMENTATION:
+ name: bool
+ version_added: "historical"
+ short_description: cast into a boolean
+ description:
+ - Attempt to cast the input into a boolean (C(True) or C(False)) value.
+ positional: _input
+ options:
+ _input:
+ description: Data to cast.
+ type: raw
+ required: true
+
+EXAMPLES: |
+
+ # simply encrypt my key in a vault
+ vars:
+ isbool: "{{ (a == b)|bool }} "
+ otherbool: "{{ anothervar|bool }} "
+
+ # in a task
+ ...
+ when: some_string_value | bool
+
+RETURN:
+ _value:
+ description: The boolean resulting of casting the input expression into a C(True) or C(False) value.
+ type: bool