1- hosts: all 2 tasks: 3 - name: Create test file 4 file: 5 path: "/tmp/param-{{ lookup('ansible.builtin.env', 'PARAM_ANSIBLE') }}" 6 state: touch 7 8