I have some variables in my playbook as follows:
---
first_var:
param1: value1
param2: value2
And I want to call these parametres from the commandline as follows:
ansible-playbook -i inventory site.yml -e 'first_var.param1=newvalue1'
But doesn't work, am I missing something?