-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
101 lines (76 loc) · 2.87 KB
/
ansible.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# config file for ansible -- http://ansible.com/
# ==============================================
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ANSIBLE_CONFIG,
# ansible.cfg in the current working directory, .ansible.cfg in
# the home directory or /etc/ansible/ansible.cfg, whichever it
# finds first
[defaults]
# some basic default values...
#inventory = ~/.ansible.multitenant-prometheus/hosts
#library = /usr/share/my_modules/
remote_tmp = $HOME/.ansible.multitenant-prometheus/.tmp
local_tmp = $HOME/.ansible.multitenant-prometheus/.tmp
#forks = 5
#poll_interval = 15
#sudo_user = root
#ask_sudo_pass = True
#ask_pass = True
#transport = smart
#remote_port = 22
#module_lang = C
#module_set_locale = True
#gathering = implicit
#gather_subset = all
roles_path = ~/.ansible.multitenant-prometheus/roles
#host_key_checking = True
# change the default callback
#stdout_callback = skippy
# enable additional callbacks
#callback_whitelist = timer, mail
#callback_plugins = $HOME/.ansible/callback_plugins
# SSH timeout
#timeout = 10
remote_user = root
log_path = ~/.ansible.multitenant-prometheus/.logs/ansible.log
# default module name for /usr/bin/ansible
#module_name = command
private_role_vars = yes
# list any Jinja2 extensions to enable here:
#jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
# If set, configures the path to the Vault password file as an alternative to
# specifying --vault-password-file on the command line.
#vault_password_file = /path/to/vault_password_file
# by default callbacks are not loaded for /bin/ansible, enable this if you
# want, for example, a notification or logging callback to also apply to
# /bin/ansible runs
#bin_ansible_callbacks = False
nocows = 1
#fact_caching = memory
retry_files_save_path = ~/.ansible.multitenant-prometheus/.retry
# squash actions
# Ansible can optimise actions that call modules with list parameters
# when looping. Instead of calling the module once per with_ item, the
# module is called once with all items at once. Currently this only works
# under limited circumstances, and only with parameters named 'name'.
#squash_actions = apk,apt,dnf,package,pacman,pkgng,yum,zypper
# controls the compression level of variables sent to
# worker processes. At the default of 0, no compression
# is used. This value must be an integer from 0 to 9.
#var_compression_level = 9
#module_compression = 'ZIP_DEFLATED'
# This controls the cutoff point (in bytes) on --diff for files
# set to 0 for unlimited (RAM may suffer!).
#max_diff_size = 1048576
### BEGIN VAGRANT STUFF
inventory = .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory
host_key_checking = False
gather_facts = False
### END VAGRANT STUFF
[privilege_escalation]
[paramiko_connection]
[ssh_connection]
pipelining = False
[accelerate]
[selinux]
[colors]