---
#
# Common variables
#
###
# Specify the Python interpreter.
ansible_python_interpreter: '/usr/bin/python3'
###
# Enable SSH pipelining.
ansible_ssh_pipelining: True
###
# Define the default SSH common arguments.
ansible_ssh_common_args: '-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=accept-new'
###
# Determine if Ansible debug is currently enabled.
ansible_debug_enabled: "{{ (lookup('env','ANSIBLE_DEBUG') | bool) or false }}"
###
# Number of attempts to connect.
# Ansible retries connections only if it gets an SSH error with a return code of 255.
# Any errors with return codes other than 255 indicate an issue with program execution.
ansible_ssh_retries: 10