rundeck-plugins / ansible-plugin

Ansible Integration for Rundeck
MIT License
330 stars 100 forks source link

Log filters not working #291

Open qsypoq opened 3 years ago

qsypoq commented 3 years ago

Hi, after testing multiples ways to do it, I'm actually unable to apply any of the log filters on ansible's output:

None of them work, FYI my playbook look like:

    - RANDOM TASK REGISTERING JSON
      register: myoutput

    - debug:
        msg: "{{ myoutput}}" 

As a workaround i can do something like:

    - RANDOM TASK REGISTERING JSON
      register: myouput
    - copy: content="{{ myoutput] }}" dest=/tmp/tmp.txt

Then I'm able to cat it in a separated command step and apply log filters on it without problem.

Is there something I'm missing or a bug on your side ?

Regards.

jothoma1 commented 3 years ago

Same for us here,