-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.cfg
24 lines (18 loc) · 926 Bytes
/
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
# Nearly all parameters can be overridden in ansible-playbook or with command
# line flags. Ansible will read any local ansible.cfg, then ~/.ansible.cfg or
# /etc/ansible/ansible.cfg, whichever it finds first with that order.
[defaults]
# format of string $ansible_managed available within Jinja2 templates, replacing
# {file}, {host} and {uid} with template filename, host and owner respectively.
# The resulting string is passed through strftime(3) so it may contain any
# time-formatting specifiers.
#
# Example: ansible_managed = DONT TOUCH {file}: call {uid} at {host} for changes
ansible_managed = Ansible managed: modified on %Y-%m-%d %H:%M:%S by {uid}
# location of inventory file, eliminates need to specify -i
inventory = ./hosts
# Use open_the_vault.sh to decrypt the vault file
# the script needs to be executable
vault_password_file = ./bin/open_the_vault.sh
retry_files_save_path = /tmp
roles_path = roles