Hi,
Custom template filters are a great way to take the programming out of my playbooks. Sometimes I would like to have a Jinja test, though.
For example, I have a filter 'is_in_zone(domain, zone)' to see if a domain ends with a certain tail. For example, '
test.example.com' is in zone '
example.com' (and in 'com').
{{ domain | is_in_zone(zone) }} would look nicer as {{ domain is in_zone(zone) }}, and having it as a test would also make it possible to use it in 'select' filters.
Is it possible to create custom Jinja tests? If not, where in the code should I look if I want to take a stab at adding that feature?
Regards,
Joost