39 lines
2.5 KiB
INI
39 lines
2.5 KiB
INI
[defaults]
|
|
# (string) Path to the Python interpreter to be used for module execution on remote targets, or an automatic discovery mode. Supported discovery modes are ``auto`` (the default), ``auto_silent``, ``auto_legacy``, and ``auto_legacy_silent``. All discovery modes employ a lookup table to use the included system Python (on distributions known to include one), falling back to a fixed ordered list of well-known Python interpreter locations if a platform-specific default is not available. The fallback behavior will issue a warning that the interpreter should be set explicitly (since interpreters installed later may change which one is used). This warning behavior can be disabled by setting ``auto_silent`` or ``auto_legacy_silent``. The value of ``auto_legacy`` provides all the same behavior, but for backwards-compatibility with older Ansible releases that always defaulted to ``/usr/bin/python``, will use that interpreter if present.
|
|
interpreter_python=python3
|
|
|
|
# (pathspec) Colon separated paths in which Ansible will search for Roles.
|
|
roles_path=./roles
|
|
|
|
# (pathlist) Comma separated list of Ansible inventory sources
|
|
inventory=./production.ini
|
|
|
|
# (path) The vault password file to use. Equivalent to --vault-password-file or --vault-id
|
|
# If executable, it will be run and the resulting stdout will be used as the password.
|
|
vault_password_file=/media/veracrypt1/scripts/ansible_vault.sh
|
|
|
|
# (list) Check all of these extensions when looking for 'variable' files which should be YAML or JSON or vaulted versions of these.
|
|
# This affects vars_files, include_vars, inventory and vars plugins among others.
|
|
yaml_valid_extensions=.yml
|
|
|
|
# (boolean) Set this to "False" if you want to avoid host key checking by the underlying tools Ansible uses to connect to the host
|
|
host_key_checking=False
|
|
|
|
# (bool) This controls whether a failed Ansible playbook should create a .retry file.
|
|
;retry_files_enabled=False
|
|
|
|
# (path) This sets the path in which Ansible will save .retry files when a playbook fails and retry files are enabled.
|
|
# This file will be overwritten after each run with the list of failed hosts from all plays.
|
|
;retry_files_save_path=
|
|
|
|
# (list) Allows to change the group variable precedence merge order.
|
|
;precedence=all_inventory, groups_inventory, all_plugins_inventory, all_plugins_play, groups_plugins_inventory, groups_plugins_play
|
|
|
|
[colors]
|
|
# (string) Defines the color to use when showing 'Skipped' task status
|
|
skip=dark gray
|
|
|
|
[tags]
|
|
# (list) default list of tags to skip in your plays, has precedence over Run Tags
|
|
;skip=
|