diff options
-rw-r--r-- | ansible.cfg | 4 | ||||
-rw-r--r-- | utils/etc/ansible.cfg | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ansible.cfg b/ansible.cfg index 589a58e9d..5a4c1cd80 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -33,6 +33,10 @@ callback_whitelist = profile_tasks # Uncomment to use the provided AWS dynamic inventory script #hostfile = inventory/aws/ec2.py +[inventory] +# fail more helpfully when the inventory file does not parse (Ansible 2.4+) +unparsed_is_failed=true + # Additional ssh options for OpenShift Ansible [ssh_connection] pipelining = True diff --git a/utils/etc/ansible.cfg b/utils/etc/ansible.cfg index f7e6fe2ff..562f6544d 100644 --- a/utils/etc/ansible.cfg +++ b/utils/etc/ansible.cfg @@ -29,6 +29,10 @@ deprecation_warnings = False # ssh_args - set if provided by user (cli) # control_path +[inventory] +# fail more helpfully when the inventory file does not parse (Ansible 2.4+) +unparsed_is_failed=true + # Additional ssh options for OpenShift Ansible [ssh_connection] # shorten the ControlPath which is often too long; when it is, |