ansible.cfg 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. # config file for ansible -- http://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. #remote_tmp = $HOME/.ansible/tmp
  13. #local_tmp = $HOME/.ansible/tmp
  14. #forks = 5
  15. #poll_interval = 15
  16. #sudo_user = root
  17. #ask_sudo_pass = True
  18. #ask_pass = True
  19. #transport = smart
  20. #remote_port = 22
  21. #module_lang = C
  22. #module_set_locale = True
  23. # plays will gather facts by default, which contain information about
  24. # the remote system.
  25. #
  26. # smart - gather by default, but don't regather if already gathered
  27. # implicit - gather by default, turn off with gather_facts: False
  28. # explicit - do not gather by default, must say gather_facts: True
  29. gathering = smart
  30. # by default retrieve all facts subsets
  31. # all - gather all subsets
  32. # network - gather min and network facts
  33. # hardware - gather hardware facts (longest facts to retrieve)
  34. # virtual - gather min and virtual facts
  35. # facter - import facts from facter
  36. # ohai - import facts from ohai
  37. # You can combine them using comma (ex: network,virtual)
  38. # You can negate them using ! (ex: !hardware,!facter,!ohai)
  39. # A minimal set of facts is always gathered.
  40. #gather_subset = all
  41. # additional paths to search for roles in, colon separated
  42. #roles_path = /etc/ansible/roles
  43. # uncomment this to disable SSH key host checking
  44. #host_key_checking = False
  45. # change the default callback
  46. stdout_callback = skippy
  47. # enable additional callbacks
  48. #callback_whitelist = timer, mail
  49. # Determine whether includes in tasks and handlers are "static" by
  50. # default. As of 2.0, includes are dynamic by default. Setting these
  51. # values to True will make includes behave more like they did in the
  52. # 1.x versions.
  53. #task_includes_static = True
  54. handler_includes_static = True
  55. # change this for alternative sudo implementations
  56. #sudo_exe = sudo
  57. # What flags to pass to sudo
  58. # WARNING: leaving out the defaults might create unexpected behaviours
  59. #sudo_flags = -H -S -n
  60. # SSH timeout
  61. #timeout = 10
  62. # default user to use for playbooks if user is not specified
  63. # (/usr/bin/ansible will use current user as default)
  64. #remote_user = root
  65. # logging is off by default unless this path is defined
  66. # if so defined, consider logrotate
  67. #log_path = /var/log/ansible.log
  68. # default module name for /usr/bin/ansible
  69. #module_name = command
  70. # use this shell for commands executed under sudo
  71. # you may need to change this to bin/bash in rare instances
  72. # if sudo is constrained
  73. #executable = /bin/sh
  74. # if inventory variables overlap, does the higher precedence one win
  75. # or are hash values merged together? The default is 'replace' but
  76. # this can also be set to 'merge'.
  77. #hash_behaviour = replace
  78. # by default, variables from roles will be visible in the global variable
  79. # scope. To prevent this, the following option can be enabled, and only
  80. # tasks and handlers within the role will see the variables there
  81. #private_role_vars = yes
  82. # list any Jinja2 extensions to enable here:
  83. #jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
  84. # if set, always use this private key file for authentication, same as
  85. # if passing --private-key to ansible or ansible-playbook
  86. #private_key_file = /path/to/file
  87. # If set, configures the path to the Vault password file as an alternative to
  88. # specifying --vault-password-file on the command line.
  89. #vault_password_file = /path/to/vault_password_file
  90. # format of string {{ ansible_managed }} available within Jinja2
  91. # templates indicates to users editing templates files will be replaced.
  92. # replacing {file}, {host} and {uid} and strftime codes with proper values.
  93. #ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
  94. # This short version is better used in templates as it won't flag the file as changed every run.
  95. #ansible_managed = Ansible managed: {file} on {host}
  96. # by default, ansible-playbook will display "Skipping [host]" if it determines a task
  97. # should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
  98. # messages. NOTE: the task header will still be shown regardless of whether or not the
  99. # task is skipped.
  100. display_skipped_hosts = False
  101. # by default, if a task in a playbook does not include a name: field then
  102. # ansible-playbook will construct a header that includes the task's action but
  103. # not the task's args. This is a security feature because ansible cannot know
  104. # if the *module* considers an argument to be no_log at the time that the
  105. # header is printed. If your environment doesn't have a problem securing
  106. # stdout from ansible-playbook (or you have manually specified no_log in your
  107. # playbook on all of the tasks where you have secret information) then you can
  108. # safely set this to True to get more informative messages.
  109. #display_args_to_stdout = False
  110. # by default (as of 1.3), Ansible will raise errors when attempting to dereference
  111. # Jinja2 variables that are not set in templates or action lines. Uncomment this line
  112. # to revert the behavior to pre-1.3.
  113. #error_on_undefined_vars = False
  114. # by default (as of 1.6), Ansible may display warnings based on the configuration of the
  115. # system running ansible itself. This may include warnings about 3rd party packages or
  116. # other conditions that should be resolved if possible.
  117. # to disable these warnings, set the following value to False:
  118. #system_warnings = True
  119. # by default (as of 1.4), Ansible may display deprecation warnings for language
  120. # features that should no longer be used and will be removed in future versions.
  121. # to disable these warnings, set the following value to False:
  122. #deprecation_warnings = True
  123. # (as of 1.8), Ansible can optionally warn when usage of the shell and
  124. # command module appear to be simplified by using a default Ansible module
  125. # instead. These warnings can be silenced by adjusting the following
  126. # setting or adding warn=yes or warn=no to the end of the command line
  127. # parameter string. This will for example suggest using the git module
  128. # instead of shelling out to the git command.
  129. # command_warnings = False
  130. # set plugin path directories here, separate with colons
  131. #action_plugins = /usr/share/ansible/plugins/action
  132. #callback_plugins = /usr/share/ansible/plugins/callback
  133. #connection_plugins = /usr/share/ansible/plugins/connection
  134. #lookup_plugins = /usr/share/ansible/plugins/lookup
  135. #vars_plugins = /usr/share/ansible/plugins/vars
  136. #filter_plugins = /usr/share/ansible/plugins/filter
  137. #test_plugins = /usr/share/ansible/plugins/test
  138. #strategy_plugins = /usr/share/ansible/plugins/strategy
  139. # by default callbacks are not loaded for /bin/ansible, enable this if you
  140. # want, for example, a notification or logging callback to also apply to
  141. # /bin/ansible runs
  142. #bin_ansible_callbacks = False
  143. # don't like cows? that's unfortunate.
  144. # set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
  145. nocows = 1
  146. # set which cowsay stencil you'd like to use by default. When set to 'random',
  147. # a random stencil will be selected for each task. The selection will be filtered
  148. # against the `cow_whitelist` option below.
  149. #cow_selection = default
  150. #cow_selection = random
  151. # when using the 'random' option for cowsay, stencils will be restricted to this list.
  152. # it should be formatted as a comma-separated list with no spaces between names.
  153. # NOTE: line continuations here are for formatting purposes only, as the INI parser
  154. # in python does not support them.
  155. #cow_whitelist=bud-frogs,bunny,cheese,daemon,default,dragon,elephant-in-snake,elephant,eyes,\
  156. # hellokitty,kitty,luke-koala,meow,milk,moofasa,moose,ren,sheep,small,stegosaurus,\
  157. # stimpy,supermilker,three-eyes,turkey,turtle,tux,udder,vader-koala,vader,www
  158. # don't like colors either?
  159. # set to 1 if you don't want colors, or export ANSIBLE_NOCOLOR=1
  160. #nocolor = 1
  161. # if set to a persistent type (not 'memory', for example 'redis') fact values
  162. # from previous runs in Ansible will be stored. This may be useful when
  163. # wanting to use, for example, IP information from one group of servers
  164. # without having to talk to them in the same playbook run to get their
  165. # current IP information.
  166. #fact_caching = memory
  167. # retry files
  168. # When a playbook fails by default a .retry file will be created in ~/
  169. # You can disable this feature by setting retry_files_enabled to False
  170. # and you can change the location of the files by setting retry_files_save_path
  171. #retry_files_enabled = False
  172. #retry_files_save_path = ~/.ansible-retry
  173. # squash actions
  174. # Ansible can optimise actions that call modules with list parameters
  175. # when looping. Instead of calling the module once per with_ item, the
  176. # module is called once with all items at once. Currently this only works
  177. # under limited circumstances, and only with parameters named 'name'.
  178. #squash_actions = apk,apt,dnf,package,pacman,pkgng,yum,zypper
  179. # prevents logging of task data, off by default
  180. #no_log = False
  181. # prevents logging of tasks, but only on the targets, data is still logged on the master/controller
  182. no_target_syslog = True
  183. # controls whether Ansible will raise an error or warning if a task has no
  184. # choice but to create world readable temporary files to execute a module on
  185. # the remote machine. This option is False by default for security. Users may
  186. # turn this on to have behaviour more like Ansible prior to 2.1.x. See
  187. # https://docs.ansible.com/ansible/become.html#becoming-an-unprivileged-user
  188. # for more secure ways to fix this than enabling this option.
  189. #allow_world_readable_tmpfiles = False
  190. # controls the compression level of variables sent to
  191. # worker processes. At the default of 0, no compression
  192. # is used. This value must be an integer from 0 to 9.
  193. var_compression_level = 9
  194. # controls what compression method is used for new-style ansible modules when
  195. # they are sent to the remote system. The compression types depend on having
  196. # support compiled into both the controller's python and the client's python.
  197. # The names should match with the python Zipfile compression types:
  198. # * ZIP_STORED (no compression. available everywhere)
  199. # * ZIP_DEFLATED (uses zlib, the default)
  200. # These values may be set per host via the ansible_module_compression inventory
  201. # variable
  202. module_compression = 'ZIP_DEFLATED'
  203. # This controls the cutoff point (in bytes) on --diff for files
  204. # set to 0 for unlimited (RAM may suffer!).
  205. #max_diff_size = 1048576
  206. [privilege_escalation]
  207. #become=True
  208. #become_method=sudo
  209. #become_user=root
  210. #become_ask_pass=False
  211. [paramiko_connection]
  212. # uncomment this line to cause the paramiko connection plugin to not record new host
  213. # keys encountered. Increases performance on new host additions. Setting works independently of the
  214. # host key checking setting above.
  215. #record_host_keys=False
  216. # by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncomment this
  217. # line to disable this behaviour.
  218. #pty=False
  219. [ssh_connection]
  220. # ssh arguments to use
  221. # Leaving off ControlPersist will result in poor performance, so use
  222. # paramiko on older platforms rather than removing it
  223. #ssh_args = -o ControlMaster=auto -o ControlPersist=60s
  224. ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes
  225. # The path to use for the ControlPath sockets. This defaults to
  226. # "%(directory)s/ansible-ssh-%%h-%%p-%%r", however on some systems with
  227. # very long hostnames or very long path names (caused by long user names or
  228. # deeply nested home directories) this can exceed the character limit on
  229. # file socket names (108 characters for most platforms). In that case, you
  230. # may wish to shorten the string below.
  231. #
  232. # Example:
  233. # control_path = %(directory)s/%%h-%%r
  234. #control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r
  235. # Enabling pipelining reduces the number of SSH operations required to
  236. # execute a module on the remote server. This can result in a significant
  237. # performance improvement when enabled, however when using "sudo:" you must
  238. # first disable 'requiretty' in /etc/sudoers
  239. #
  240. # By default, this option is disabled to preserve compatibility with
  241. # sudoers configurations that have requiretty (the default on many distros).
  242. #
  243. pipelining = True
  244. # if True, make ansible use scp if the connection type is ssh
  245. # (default is sftp)
  246. #scp_if_ssh = True
  247. # if False, sftp will not use batch mode to transfer files. This may cause some
  248. # types of file transfer failures impossible to catch however, and should
  249. # only be disabled if your sftp version has problems with batch mode
  250. #sftp_batch_mode = False
  251. [accelerate]
  252. #accelerate_port = 5099
  253. #accelerate_timeout = 30
  254. #accelerate_connect_timeout = 5.0
  255. # The daemon timeout is measured in minutes. This time is measured
  256. # from the last activity to the accelerate daemon.
  257. #accelerate_daemon_timeout = 30
  258. # If set to yes, accelerate_multi_key will allow multiple
  259. # private keys to be uploaded to it, though each user must
  260. # have access to the system via SSH to add a new key. The default
  261. # is "no".
  262. #accelerate_multi_key = yes
  263. [selinux]
  264. # file systems that require special treatment when dealing with security context
  265. # the default behaviour that copies the existing context or uses the user default
  266. # needs to be changed to use the file system dependent context.
  267. #special_context_filesystems=nfs,vboxsf,fuse,ramfs
  268. # Set this to yes to allow libvirt_lxc connections to work without SELinux.
  269. #libvirt_lxc_noseclabel = yes
  270. [colors]
  271. #highlight = white
  272. #verbose = blue
  273. #warn = bright purple
  274. #error = red
  275. #debug = dark gray
  276. #deprecate = purple
  277. #skip = cyan
  278. #unreachable = red
  279. #ok = green
  280. changed = bright yellow
  281. diff_add = bright green
  282. diff_remove = bright red
  283. #diff_lines = cyan