ansible.cfg: Add setting forks & error_on_undefined_vars
[noc.git] / ansible / ansible.cfg
index 3be1971..2e674c0 100644 (file)
@@ -1,9 +1,17 @@
 [defaults]
 inventory = ./hosts.ini
+roles_path = ./roles:../roles
 log_path = ./log
 nocows=1
 vault_password_file = ./gpg/get-vault-pass.sh
 
+# Error-out when encountering an undefined variable
+# See https://docs.ansible.com/ansible/latest/intro_configuration.html#error-on-undefined-vars
+error_on_undefined_vars = True
+
+# Run more tasks in parallel
+forks = 50
+
 gathering = smart
 fact_caching = jsonfile
 fact_caching_connection = ./.cache/facts