ansible.cfg 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. # config file for ansible -- https://ansible.com/
  2. # ===============================================
  3. # nearly all parameters can be overridden in ansible-playbook
  4. # or with command line flags. ansible will read ANSIBLE_CONFIG,
  5. # ansible.cfg in the current working directory, .ansible.cfg in
  6. # the home directory or /etc/ansible/ansible.cfg, whichever it
  7. # finds first
  8. [defaults]
  9. # some basic default values...
  10. #inventory = /etc/ansible/hosts
  11. #library = /usr/share/my_modules/
  12. #module_utils = /usr/share/my_module_utils/
  13. #remote_tmp = ~/.ansible/tmp
  14. #local_tmp = ~/.ansible/tmp
  15. #plugin_filters_cfg = /etc/ansible/plugin_filters.yml
  16. #forks = 5
  17. #poll_interval = 15
  18. #sudo_user = root
  19. #ask_sudo_pass = True
  20. #ask_pass = True
  21. #transport = smart
  22. #remote_port = 22
  23. #module_lang = C
  24. #module_set_locale = False
  25. # plays will gather facts by default, which contain information about
  26. # the remote system.
  27. #
  28. # smart - gather by default, but don't regather if already gathered
  29. # implicit - gather by default, turn off with gather_facts: False
  30. # explicit - do not gather by default, must say gather_facts: True
  31. gathering = smart
  32. # This only affects the gathering done by a play's gather_facts directive,
  33. # by default gathering retrieves all facts subsets
  34. # all - gather all subsets
  35. # network - gather min and network facts
  36. # hardware - gather hardware facts (longest facts to retrieve)
  37. # virtual - gather min and virtual facts
  38. # facter - import facts from facter
  39. # ohai - import facts from ohai
  40. # You can combine them using comma (ex: network,virtual)
  41. # You can negate them using ! (ex: !hardware,!facter,!ohai)
  42. # A minimal set of facts is always gathered.
  43. #gather_subset = all
  44. # some hardware related facts are collected
  45. # with a maximum timeout of 10 seconds. This
  46. # option lets you increase or decrease that
  47. # timeout to something more suitable for the
  48. # environment.
  49. # gather_timeout = 10
  50. # Ansible facts are available inside the ansible_facts.* dictionary
  51. # namespace. This setting maintains the behaviour which was the default prior
  52. # to 2.5, duplicating these variables into the main namespace, each with a
  53. # prefix of 'ansible_'.
  54. # This variable is set to True by default for backwards compatibility. It
  55. # will be changed to a default of 'False' in a future release.
  56. # ansible_facts.
  57. # inject_facts_as_vars = True
  58. # additional paths to search for roles in, colon separated
  59. #roles_path = /etc/ansible/roles
  60. # uncomment this to disable SSH key host checking
  61. #host_key_checking = False
  62. # change the default callback, you can only have one 'stdout' type enabled at a time.
  63. stdout_callback = condensed
  64. ## Ansible ships with some plugins that require whitelisting,
  65. ## this is done to avoid running all of a type by default.
  66. ## These setting lists those that you want enabled for your system.
  67. ## Custom plugins should not need this unless plugin author specifies it.
  68. # enable callback plugins, they can output to stdout but cannot be 'stdout' type.
  69. #callback_whitelist = timer, mail
  70. # Determine whether includes in tasks and handlers are "static" by
  71. # default. As of 2.0, includes are dynamic by default. Setting these
  72. # values to True will make includes behave more like they did in the
  73. # 1.x versions.
  74. #task_includes_static = False
  75. #handler_includes_static = False
  76. # Controls if a missing handler for a notification event is an error or a warning
  77. #error_on_missing_handler = True
  78. # change this for alternative sudo implementations
  79. #sudo_exe = sudo
  80. # What flags to pass to sudo
  81. # WARNING: leaving out the defaults might create unexpected behaviours
  82. #sudo_flags = -H -S -n
  83. # SSH timeout
  84. #timeout = 10
  85. # default user to use for playbooks if user is not specified
  86. # (/usr/bin/ansible will use current user as default)
  87. #remote_user = root
  88. # logging is off by default unless this path is defined
  89. # if so defined, consider logrotate
  90. #log_path = /var/log/ansible.log
  91. # default module name for /usr/bin/ansible
  92. #module_name = command
  93. # use this shell for commands executed under sudo
  94. # you may need to change this to bin/bash in rare instances
  95. # if sudo is constrained
  96. #executable = /bin/sh
  97. # if inventory variables overlap, does the higher precedence one win
  98. # or are hash values merged together? The default is 'replace' but
  99. # this can also be set to 'merge'.
  100. #hash_behaviour = replace
  101. # by default, variables from roles will be visible in the global variable
  102. # scope. To prevent this, the following option can be enabled, and only
  103. # tasks and handlers within the role will see the variables there
  104. #private_role_vars = yes
  105. # list any Jinja2 extensions to enable here:
  106. #jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
  107. # if set, always use this private key file for authentication, same as
  108. # if passing --private-key to ansible or ansible-playbook
  109. #private_key_file = /path/to/file
  110. # If set, configures the path to the Vault password file as an alternative to
  111. # specifying --vault-password-file on the command line.
  112. #vault_password_file = /path/to/vault_password_file
  113. # format of string {{ ansible_managed }} available within Jinja2
  114. # templates indicates to users editing templates files will be replaced.
  115. # replacing {file}, {host} and {uid} and strftime codes with proper values.
  116. #ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
  117. # {file}, {host}, {uid}, and the timestamp can all interfere with idempotence
  118. # in some situations so the default is a static string:
  119. #ansible_managed = Ansible managed
  120. # by default, ansible-playbook will display "Skipping [host]" if it determines a task
  121. # should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
  122. # messages. NOTE: the task header will still be shown regardless of whether or not the
  123. # task is skipped.
  124. display_skipped_hosts = False
  125. # by default, if a task in a playbook does not include a name: field then
  126. # ansible-playbook will construct a header that includes the task's action but
  127. # not the task's args. This is a security feature because ansible cannot know
  128. # if the *module* considers an argument to be no_log at the time that the
  129. # header is printed. If your environment doesn't have a problem securing
  130. # stdout from ansible-playbook (or you have manually specified no_log in your
  131. # playbook on all of the tasks where you have secret information) then you can
  132. # safely set this to True to get more informative messages.
  133. #display_args_to_stdout = False
  134. # by default (as of 1.3), Ansible will raise errors when attempting to dereference
  135. # Jinja2 variables that are not set in templates or action lines. Uncomment this line
  136. # to revert the behavior to pre-1.3.
  137. #error_on_undefined_vars = False
  138. # by default (as of 1.6), Ansible may display warnings based on the configuration of the
  139. # system running ansible itself. This may include warnings about 3rd party packages or
  140. # other conditions that should be resolved if possible.
  141. # to disable these warnings, set the following value to False:
  142. #system_warnings = True
  143. # by default (as of 1.4), Ansible may display deprecation warnings for language
  144. # features that should no longer be used and will be removed in future versions.
  145. # to disable these warnings, set the following value to False:
  146. #deprecation_warnings = True
  147. # (as of 1.8), Ansible can optionally warn when usage of the shell and
  148. # command module appear to be simplified by using a default Ansible module
  149. # instead. These warnings can be silenced by adjusting the following
  150. # setting or adding warn=yes or warn=no to the end of the command line
  151. # parameter string. This will for example suggest using the git module
  152. # instead of shelling out to the git command.
  153. # command_warnings = False
  154. # set plugin path directories here, separate with colons
  155. #action_plugins = /usr/share/ansible/plugins/action
  156. #become_plugins = /usr/share/ansible/plugins/become
  157. #cache_plugins = /usr/share/ansible/plugins/cache
  158. #callback_plugins = /usr/share/ansible/plugins/callback
  159. #connection_plugins = /usr/share/ansible/plugins/connection
  160. #lookup_plugins = /usr/share/ansible/plugins/lookup
  161. #inventory_plugins = /usr/share/ansible/plugins/inventory
  162. #vars_plugins = /usr/share/ansible/plugins/vars
  163. #filter_plugins = /usr/share/ansible/plugins/filter
  164. #test_plugins = /usr/share/ansible/plugins/test
  165. #terminal_plugins = /usr/share/ansible/plugins/terminal
  166. #strategy_plugins = /usr/share/ansible/plugins/strategy
  167. callback_plugins = 3rdparty/kolter-playbooks/3rdparty/ansible-callback-condensed/
  168. # by default, ansible will use the 'linear' strategy but you may want to try
  169. # another one
  170. #strategy = free
  171. # by default callbacks are not loaded for /bin/ansible, enable this if you
  172. # want, for example, a notification or logging callback to also apply to
  173. # /bin/ansible runs
  174. bin_ansible_callbacks = True
  175. # don't like cows? that's unfortunate.
  176. # set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
  177. nocows = 1
  178. # set which cowsay stencil you'd like to use by default. When set to 'random',
  179. # a random stencil will be selected for each task. The selection will be filtered
  180. # against the `cow_whitelist` option below.
  181. #cow_selection = default
  182. #cow_selection = random
  183. # when using the 'random' option for cowsay, stencils will be restricted to this list.
  184. # it should be formatted as a comma-separated list with no spaces between names.
  185. # NOTE: line continuations here are for formatting purposes only, as the INI parser
  186. # in python does not support them.
  187. #cow_whitelist=bud-frogs,bunny,cheese,daemon,default,dragon,elephant-in-snake,elephant,eyes,\
  188. # hellokitty,kitty,luke-koala,meow,milk,moofasa,moose,ren,sheep,small,stegosaurus,\
  189. # stimpy,supermilker,three-eyes,turkey,turtle,tux,udder,vader-koala,vader,www
  190. # don't like colors either?
  191. # set to 1 if you don't want colors, or export ANSIBLE_NOCOLOR=1
  192. #nocolor = 1
  193. # if set to a persistent type (not 'memory', for example 'redis') fact values
  194. # from previous runs in Ansible will be stored. This may be useful when
  195. # wanting to use, for example, IP information from one group of servers
  196. # without having to talk to them in the same playbook run to get their
  197. # current IP information.
  198. #fact_caching = memory
  199. #This option tells Ansible where to cache facts. The value is plugin dependent.
  200. #For the jsonfile plugin, it should be a path to a local directory.
  201. #For the redis plugin, the value is a host:port:database triplet: fact_caching_connection = localhost:6379:0
  202. #fact_caching_connection=/tmp
  203. # retry files
  204. # When a playbook fails a .retry file can be created that will be placed in ~/
  205. # You can enable this feature by setting retry_files_enabled to True
  206. # and you can change the location of the files by setting retry_files_save_path
  207. #retry_files_enabled = False
  208. #retry_files_save_path = ~/.ansible-retry
  209. # squash actions
  210. # Ansible can optimise actions that call modules with list parameters
  211. # when looping. Instead of calling the module once per with_ item, the
  212. # module is called once with all items at once. Currently this only works
  213. # under limited circumstances, and only with parameters named 'name'.
  214. #squash_actions = apk,apt,dnf,homebrew,pacman,pkgng,yum,zypper
  215. # prevents logging of task data, off by default
  216. #no_log = False
  217. # prevents logging of tasks, but only on the targets, data is still logged on the master/controller
  218. no_target_syslog = True
  219. # controls whether Ansible will raise an error or warning if a task has no
  220. # choice but to create world readable temporary files to execute a module on
  221. # the remote machine. This option is False by default for security. Users may
  222. # turn this on to have behaviour more like Ansible prior to 2.1.x. See
  223. # https://docs.ansible.com/ansible/become.html#becoming-an-unprivileged-user
  224. # for more secure ways to fix this than enabling this option.
  225. #allow_world_readable_tmpfiles = False
  226. # controls the compression level of variables sent to
  227. # worker processes. At the default of 0, no compression
  228. # is used. This value must be an integer from 0 to 9.
  229. var_compression_level = 9
  230. # controls what compression method is used for new-style ansible modules when
  231. # they are sent to the remote system. The compression types depend on having
  232. # support compiled into both the controller's python and the client's python.
  233. # The names should match with the python Zipfile compression types:
  234. # * ZIP_STORED (no compression. available everywhere)
  235. # * ZIP_DEFLATED (uses zlib, the default)
  236. # These values may be set per host via the ansible_module_compression inventory
  237. # variable
  238. module_compression = 'ZIP_DEFLATED'
  239. # This controls the cutoff point (in bytes) on --diff for files
  240. # set to 0 for unlimited (RAM may suffer!).
  241. #max_diff_size = 1048576
  242. # This controls how ansible handles multiple --tags and --skip-tags arguments
  243. # on the CLI. If this is True then multiple arguments are merged together. If
  244. # it is False, then the last specified argument is used and the others are ignored.
  245. # This option will be removed in 2.8.
  246. #merge_multiple_cli_flags = True
  247. # Controls showing custom stats at the end, off by default
  248. #show_custom_stats = True
  249. # Controls which files to ignore when using a directory as inventory with
  250. # possibly multiple sources (both static and dynamic)
  251. #inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo
  252. # This family of modules use an alternative execution path optimized for network appliances
  253. # only update this setting if you know how this works, otherwise it can break module execution
  254. #network_group_modules=eos, nxos, ios, iosxr, junos, vyos
  255. # When enabled, this option allows lookups (via variables like {{lookup('foo')}} or when used as
  256. # a loop with `with_foo`) to return data that is not marked "unsafe". This means the data may contain
  257. # jinja2 templating language which will be run through the templating engine.
  258. # ENABLING THIS COULD BE A SECURITY RISK
  259. #allow_unsafe_lookups = False
  260. # set default errors for all plays
  261. #any_errors_fatal = False
  262. [inventory]
  263. # enable inventory plugins, default: 'host_list', 'script', 'auto', 'yaml', 'ini', 'toml'
  264. #enable_plugins = host_list, virtualbox, yaml, constructed
  265. # ignore these extensions when parsing a directory as inventory source
  266. #ignore_extensions = .pyc, .pyo, .swp, .bak, ~, .rpm, .md, .txt, ~, .orig, .ini, .cfg, .retry
  267. # ignore files matching these patterns when parsing a directory as inventory source
  268. #ignore_patterns=
  269. # If 'true' unparsed inventory sources become fatal errors, they are warnings otherwise.
  270. #unparsed_is_failed=False
  271. [privilege_escalation]
  272. #become=True
  273. #become_method=sudo
  274. #become_user=root
  275. #become_ask_pass=False
  276. [paramiko_connection]
  277. # uncomment this line to cause the paramiko connection plugin to not record new host
  278. # keys encountered. Increases performance on new host additions. Setting works independently of the
  279. # host key checking setting above.
  280. #record_host_keys=False
  281. # by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncomment this
  282. # line to disable this behaviour.
  283. #pty=False
  284. # paramiko will default to looking for SSH keys initially when trying to
  285. # authenticate to remote devices. This is a problem for some network devices
  286. # that close the connection after a key failure. Uncomment this line to
  287. # disable the Paramiko look for keys function
  288. #look_for_keys = False
  289. # When using persistent connections with Paramiko, the connection runs in a
  290. # background process. If the host doesn't already have a valid SSH key, by
  291. # default Ansible will prompt to add the host key. This will cause connections
  292. # running in background processes to fail. Uncomment this line to have
  293. # Paramiko automatically add host keys.
  294. #host_key_auto_add = True
  295. [ssh_connection]
  296. # ssh arguments to use
  297. # Leaving off ControlPersist will result in poor performance, so use
  298. # paramiko on older platforms rather than removing it, -C controls compression use
  299. #ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
  300. ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes
  301. # The base directory for the ControlPath sockets.
  302. # This is the "%(directory)s" in the control_path option
  303. #
  304. # Example:
  305. # control_path_dir = /tmp/.ansible/cp
  306. #control_path_dir = ~/.ansible/cp
  307. # The path to use for the ControlPath sockets. This defaults to a hashed string of the hostname,
  308. # port and username (empty string in the config). The hash mitigates a common problem users
  309. # found with long hostnames and the conventional %(directory)s/ansible-ssh-%%h-%%p-%%r format.
  310. # In those cases, a "too long for Unix domain socket" ssh error would occur.
  311. #
  312. # Example:
  313. # control_path = %(directory)s/%%h-%%r
  314. #control_path =
  315. # Enabling pipelining reduces the number of SSH operations required to
  316. # execute a module on the remote server. This can result in a significant
  317. # performance improvement when enabled, however when using "sudo:" you must
  318. # first disable 'requiretty' in /etc/sudoers
  319. #
  320. # By default, this option is disabled to preserve compatibility with
  321. # sudoers configurations that have requiretty (the default on many distros).
  322. #
  323. pipelining = True
  324. # Control the mechanism for transferring files (old)
  325. # * smart = try sftp and then try scp [default]
  326. # * True = use scp only
  327. # * False = use sftp only
  328. #scp_if_ssh = smart
  329. # Control the mechanism for transferring files (new)
  330. # If set, this will override the scp_if_ssh option
  331. # * sftp = use sftp to transfer files
  332. # * scp = use scp to transfer files
  333. # * piped = use 'dd' over SSH to transfer files
  334. # * smart = try sftp, scp, and piped, in that order [default]
  335. #transfer_method = smart
  336. # if False, sftp will not use batch mode to transfer files. This may cause some
  337. # types of file transfer failures impossible to catch however, and should
  338. # only be disabled if your sftp version has problems with batch mode
  339. #sftp_batch_mode = False
  340. # The -tt argument is passed to ssh when pipelining is not enabled because sudo
  341. # requires a tty by default.
  342. #usetty = True
  343. # Number of times to retry an SSH connection to a host, in case of UNREACHABLE.
  344. # For each retry attempt, there is an exponential backoff,
  345. # so after the first attempt there is 1s wait, then 2s, 4s etc. up to 30s (max).
  346. #retries = 3
  347. [persistent_connection]
  348. # Configures the persistent connection timeout value in seconds. This value is
  349. # how long the persistent connection will remain idle before it is destroyed.
  350. # If the connection doesn't receive a request before the timeout value
  351. # expires, the connection is shutdown. The default value is 30 seconds.
  352. connect_timeout = 30
  353. # The command timeout value defines the amount of time to wait for a command
  354. # or RPC call before timing out. The value for the command timeout must
  355. # be less than the value of the persistent connection idle timeout (connect_timeout)
  356. # The default value is 10 second.
  357. command_timeout = 1
  358. [accelerate]
  359. #accelerate_port = 5099
  360. #accelerate_timeout = 30
  361. #accelerate_connect_timeout = 5.0
  362. # The daemon timeout is measured in minutes. This time is measured
  363. # from the last activity to the accelerate daemon.
  364. #accelerate_daemon_timeout = 30
  365. # If set to yes, accelerate_multi_key will allow multiple
  366. # private keys to be uploaded to it, though each user must
  367. # have access to the system via SSH to add a new key. The default
  368. # is "no".
  369. #accelerate_multi_key = yes
  370. [selinux]
  371. # file systems that require special treatment when dealing with security context
  372. # the default behaviour that copies the existing context or uses the user default
  373. # needs to be changed to use the file system dependent context.
  374. #special_context_filesystems=nfs,vboxsf,fuse,ramfs,9p
  375. # Set this to yes to allow libvirt_lxc connections to work without SELinux.
  376. #libvirt_lxc_noseclabel = yes
  377. [colors]
  378. #highlight = white
  379. #verbose = blue
  380. #warn = bright purple
  381. #error = red
  382. #debug = dark gray
  383. #deprecate = purple
  384. #skip = cyan
  385. #unreachable = red
  386. #ok = green
  387. changed = bright yellow
  388. diff_add = bright green
  389. diff_remove = bright red
  390. #diff_lines = cyan
  391. [diff]
  392. # Always print diff when running ( same as always running with -D/--diff )
  393. always = yes
  394. # Set how many context lines to show in diff
  395. # context = 3