--- - name: Build Wordpress sites include_tasks: wordpress.yml loop: "{{ sites }}" loop_control: loop_var: site when: site.type == "wordpress" tags: wordpress,sites - name: Build Drupal sites include_tasks: drupal.yml loop: "{{ sites }}" loop_control: loop_var: site when: site.type == "drupal" tags: drupal,sites - name: Build Gitea sites include_tasks: gitea.yml loop: "{{ sites }}" loop_control: loop_var: site when: site.type == "gitea" tags: gitea,sites - name: Build Synapse sites include_tasks: synapse.yml loop: "{{ sites }}" loop_control: loop_var: site when: site.type == "synapse" tags: synapse,sites