Hi all, I would like to get the value of --limit. For instance, let’s have this command:
$ ansible-playbook site.yml --limit foo
I would like to read {{ limit }} from a task. Is there a solution or do I have to do something like the following?
$ ansible-playbook site.yml --limit foo -e “limit=foo”
Thanks, Marco