all,
we are using the ansible debugger and running into some issues -
basically, we are hitting a place where a string is being eval’ed to get another string, ie:
var: “{{ another_var | user_filter | user_filter2 }}”
and it is dying because user_filter is hitting an error on ‘another_var’ as input.
therefore, we’d like to see what’s going on with user_filter here, and would like to reproduce with eval’ing the relevant string.
for example, we can do:
(debug) p “{{ another_var | user_filter | user_filter2 }}”
but that doesn’t run user_filter or user_filter2.
so - how can you get the debugger to eval any given ansible statement?
thanks much for any info…