Given a play, I would like to reference somehow its vars section. I would like to achieve any of the two:
- The next play to have access to the vars of the previous play like "{{ prev_play_vars }}"
- The vars section of each play to be available to the rest of the plays via sth like "{{play_name_here_vars}}"
I tried messing around with a custom callback plugin but that didn't get me anywhere.
How could I achieve sth like that?