141 lines
3.7 KiB
INI
141 lines
3.7 KiB
INI
[defaults]
|
|
#inventory = /etc/ansible/hosts
|
|
inventory = inventory.yaml
|
|
#library = ~/.ansible/plugins/modules:/usr/share/ansible/plugins/modules
|
|
#module_utils = ~/.ansible/plugins/module_utils:/usr/share/ansible/plugins/module_utils
|
|
#remote_tmp = ~/.ansible/tmp
|
|
#local_tmp = ~/.ansible/tmp
|
|
#forks = 5
|
|
#poll_interval = 0.001
|
|
#ask_pass = False
|
|
#transport = smart
|
|
|
|
|
|
host_key_checking = False
|
|
remote_user = root
|
|
|
|
# private_key_file = ssh/ssh_deploy_private
|
|
vault_password_file = .vault-pass
|
|
|
|
|
|
[inventory]
|
|
# List of enabled inventory plugins and the order in which they are used.
|
|
#enable_plugins = host_list, script, auto, yaml, ini, toml
|
|
|
|
# Ignore these extensions when parsing a directory as inventory source
|
|
#ignore_extensions = .pyc, .pyo, .swp, .bak, ~, .rpm, .md, .txt, ~, .orig, .ini, .cfg, .retry
|
|
|
|
# ignore files matching these patterns when parsing a directory as inventory source
|
|
#ignore_patterns=
|
|
|
|
# If 'True' unparsed inventory sources become fatal errors, otherwise they are warnings.
|
|
#unparsed_is_failed = False
|
|
|
|
|
|
[privilege_escalation]
|
|
#become = False
|
|
#become_method = sudo
|
|
#become_ask_pass = False
|
|
|
|
|
|
## Connection Plugins ##
|
|
|
|
# Settings for each connection plugin go under a section titled '[[plugin_name]_connection]'
|
|
# To view available connection plugins, run ansible-doc -t connection -l
|
|
# To view available options for a connection plugin, run ansible-doc -t connection [plugin_name]
|
|
# https://docs.ansible.com/ansible/latest/plugins/connection.html
|
|
|
|
[paramiko_connection]
|
|
#record_host_keys=False
|
|
#pty = False
|
|
|
|
#look_for_keys = False
|
|
#host_key_auto_add = True
|
|
|
|
|
|
[ssh_connection]
|
|
#ssh_args = -F ssh/config
|
|
#ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
|
|
#control_path_dir = ~/.ansible/cp
|
|
|
|
#control_path =
|
|
#pipelining = False
|
|
#scp_if_ssh = smart
|
|
#transfer_method = smart
|
|
#sftp_batch_mode = False
|
|
#usetty = True
|
|
#retries = 3
|
|
|
|
|
|
[persistent_connection]
|
|
#connect_timeout = 30
|
|
#command_timeout = 30
|
|
[sudo_become_plugin]
|
|
#flags = -H -S -n
|
|
#user = root
|
|
|
|
|
|
[selinux]
|
|
# file systems that require special treatment when dealing with security context
|
|
# the default behaviour that copies the existing context or uses the user default
|
|
# needs to be changed to use the file system dependent context.
|
|
#special_context_filesystems=fuse,nfs,vboxsf,ramfs,9p,vfat
|
|
|
|
# Set this to True to allow libvirt_lxc connections to work without SELinux.
|
|
#libvirt_lxc_noseclabel = False
|
|
|
|
|
|
[colors]
|
|
#highlight = white
|
|
#verbose = blue
|
|
#warn = bright purple
|
|
#error = red
|
|
#debug = dark gray
|
|
#deprecate = purple
|
|
#skip = cyan
|
|
#unreachable = red
|
|
#ok = green
|
|
#changed = yellow
|
|
#diff_add = green
|
|
#diff_remove = red
|
|
#diff_lines = cyan
|
|
|
|
|
|
[diff]
|
|
# Always print diff when running ( same as always running with -D/--diff )
|
|
#always = False
|
|
|
|
# Set how many context lines to show in diff
|
|
#context = 3
|
|
|
|
[galaxy]
|
|
# Controls whether the display wheel is shown or not
|
|
#display_progress=
|
|
|
|
# Validate TLS certificates for Galaxy server
|
|
#ignore_certs = False
|
|
|
|
# Role or collection skeleton directory to use as a template for
|
|
# the init action in ansible-galaxy command
|
|
#role_skeleton=
|
|
|
|
# Patterns of files to ignore inside a Galaxy role or collection
|
|
# skeleton directory
|
|
#role_skeleton_ignore="^.git$", "^.*/.git_keep$"
|
|
|
|
# Galaxy Server URL
|
|
#server=https://galaxy.ansible.com
|
|
|
|
# A list of Galaxy servers to use when installing a collection.
|
|
#server_list=automation_hub, release_galaxy
|
|
|
|
# Server specific details which are mentioned in server_list
|
|
#[galaxy_server.automation_hub]
|
|
#url=https://cloud.redhat.com/api/automation-hub/
|
|
#auth_url=https://sso.redhat.com/auth/realms/redhat-external/protocol/openid-connect/token
|
|
#token=my_ah_token
|
|
#
|
|
#[galaxy_server.release_galaxy]
|
|
#url=https://galaxy.ansible.com/
|
|
#token=my_token
|