infrastructure/ansible.cfg
saibotk 8f07bbc671
Config: Add roles path to ansible.cfg explicitly
This is needed, when using an extra folder for playbooks, so Ansible can still find all roles.
2021-03-05 14:26:59 +01:00

15 lines
362 B
INI

[defaults]
roles_path = ./roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
inventory = ./inventory
retry_files_enabled = false
vault_password_file = .vault_pass
[ssh_connection]
scp_if_ssh = true
[privilege_escalation]
become_ask_pass = false
[galaxy]
role_skeleton = ./.ansible/skeleton/default
role_skeleton_ignore = ^.git$,^.*/.git_keep$