Has anyone come across a way to do this? Something like:
--- - name: Playbook to prompt for a multi-line string hosts: localhost gather_facts: false tasks: - ansible.builtin.pause: prompt: Enter value multiline: yes # note that this does not exist :) register: result - name: Use the multi-line string debug: var: resultWhere I would then enter multiple lines of text with some clever termination scheme (Ctrl-D, enter “dot” enter, enter enter, something else?)