--- - name: Demonstration of tags usage hosts: nodes tasks: - name: Adding the user user: name: March home: /home/March state: present tags: adding - name: Appending to other group user: name: March groups: wheel tags: - appending - super_group - name: Creating the file in home directory file: path: /home/March/Test.sh mode: 0777 state: touch tags: script - name: executing the script shell: /home/March/Test.sh register: out tags: output - name: Calling the variable debug: var: out tags: variable ...