--- - name: Testing the command module & how to define it inside a playbook hosts: nodes tasks: - name: Run first command command: "ls -l /root" - name: Run second command command: "uptime" - name: Run third command command: "df -Th" - name: Run fourth command command: "id Tom" ...