Is there a way to destroy the variable in Ansible?
Actually, I have a {{version}} variable being used in my all roles for respective packages. When I run multiple roles, the version value of one role is passed to another - this is due to for some role I am not giving version value so that it can install the default version of that package available for respective m/c like ubuntu/redhat etc.
Here is my role template. The value of {{version}} from mysql is being passed to rabbitmq.
roles:
- { role: mysql }
- { role: rabbitmq}
If I can destory/delete the value of version in every role, it should solve the problem, I believe.