Hi all, I would like to read the --limit command line option. For instance, let’s have the following:
$ ansible-playbook site.yml --limit foo
I would like the tasks to read {{ limit }}. Is it possibile or do I have to duplicate thinks like in the following?
$ ansible-playbook site.yml --limit foo --extra-vars “limit=foo”
Thanks, Marco