Michal Zegan | 2e34522 | 2019-08-22 15:01:07 +0200 | [diff] [blame] | 1 | #Ansible configuration used when running the playbook. |
| 2 | [defaults] |
| 3 | #Stdout callback. |
| 4 | stdout_callback=debug |
| 5 | #Default verbosity level, for logging all module outputs. |
| 6 | verbosity=1 |
Bartek Grzybowski | fa807fc | 2020-12-11 13:57:08 +0100 | [diff] [blame] | 7 | jinja2_extensions = jinja2.ext.do |
Michal Zegan | 2e34522 | 2019-08-22 15:01:07 +0200 | [diff] [blame] | 8 | |
| 9 | [inventory] |
| 10 | #Fail when inventory parsing fails. |
| 11 | any_unparsed_is_failed=true |
| 12 | |
| 13 | [connection] |
| 14 | #Enable ansible pipelining. |
| 15 | pipelining=true |
| 16 | |
| 17 | [ssh_connection] |
| 18 | #Increase control persist settings. |
| 19 | ssh_args=-C -o ControlMaster=auto -o ControlPersist=30m |