QuackatronHQ / Gigarepo

Use command instead of shell ANS-E3005
Anti-pattern
Major
1 occurrence in this check
Use shell only when shell functionality is required
37      local_action: ansible.builtin.command /usr/bin/take_out_of_pool {{ inventory_hostname }}
38
39    - name: shell with jinja filter
40      shell: echo {{ "hello"|upper }}41      changed_when: false
42
43