I\'m new to ansible and wonder how to do so as the following didn\'t work
ansible-playbook -i \'10.0.0.1,\' yada-yada.yml --tags \'loaddata\' django_fixtures=\"t
ansible-playbook test.yml --extra-vars "arg1=${var1} arg2=${var2}"
In the yml file you can use them like this
--- arg1: "{{ var1 }}" arg2: "{{ var2 }}"
Also, --extra-vars and -e are the same, you can use one of them.
--extra-vars
-e