Hello-
I want to stop the playbook on hitting the first error and not proceed anything further, I understand
any_errors_fatal: True
will take care of that at a playbook level.
However I have a deployment/upgrade process where we run multiple playbooks (over 150) and new ones are getting added on a weekly basis. So adding
any_errors_fatal: True
to each any every playbook is cumbersome and is a nightmare to make sure all new playbooks will come with this option by default.
Is there a global config - like a env variable or an ansible.cfg option to run with option.
any_errors_fatal: True
Thanks