aboutsummaryrefslogtreecommitdiffstats
path: root/ansible.cfg
blob: eb43b1bd105104051e8da01845faf0ca0064b0f8 (plain)
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
#
# Ansible local config file
# See `/etc/ansible/ansible.cfg' for the global config file.
#
# Aaron LI
# 2018-02-12
#

[defaults]
inventory = ./inventory.yml
# Increase SSH startup timeout (default: 10s)
timeout = 30

# uncomment this to disable SSH key host checking
#host_key_checking = False

# If set, configures the path to the Vault password file as an alternative
# to specifying --vault-password-file on the command line.
# e.g., dd if=/dev/random count=1 bs=32 | openssl base64
vault_password_file = ./private/vault_pass

# don't like cows?  that's unfortunate.
# set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
#nocows = 1

[ssh_connection]
pipelining = True

# SSH arguments to use
# Add 'IdentitiesOnly=yes'
ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s -o IdentitiesOnly=yes

[inventory]
enable_plugins = yaml