I have this play.yml
---
- hosts: 127.0.0.1
connection: local
sudo: false
tasks:
- include: apache.yml
My Apache look like this:
vars:
url: czxcxz
- name: Download apache
shell: wget {{url}}
This is giving me error.
If I remove vars then it works. But I want to include the vars inside tasks so that I can keep different vars for different tasks separate.