From ef3e62e078e96f76505ed9c5661acda21ff94d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Wed, 27 Jun 2018 08:58:29 +0200 Subject: [PATCH] add a readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e4f5e9f --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Advanced features/aspects of Ansible + +This repository is a collection of playbooks showing advanced features or +aspects of Ansible. + +## Current examples + +[Variable evaluation order](variable-order.yaml): shows that Jinja placeholders +in the variable value are evaluated when used and not when defined. + +[Select filter and search test](select-filter-and-search-test.yaml): shows how +to combine the `select` filter of Jinja with the `match`/`search` test of +Ansible to filter a list.