shuffle filter: added optional 'seed' parameter

This commit is contained in:
Alexander Gubin
2017-01-02 10:50:04 +01:00
committed by Brian Coca
parent f9385cb972
commit fce9f4f679
2 changed files with 10 additions and 2 deletions

View File

@@ -185,6 +185,10 @@ To get a random list from an existing list::
{{ ['a','b','c']|shuffle }} => ['c','a','b']
{{ ['a','b','c']|shuffle }} => ['b','c','a']
As of Ansible version 2.3, it's also possible to shuffle a list idempotent. All you need is a seed.::
{{ ['a','b','c']|shuffle(seed=inventory_hostname) }} => ['b','a','c']
note that when used with a non 'listable' item it is a noop, otherwise it always returns a list