Compare commits
4 commits
20cfd3ac6e
...
b3c0af2139
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b3c0af2139 | ||
![]() |
d9f8a545be | ||
![]() |
f6f953f6c0 | ||
![]() |
979df190dc |
2 changed files with 37 additions and 0 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Ignore inventory file. This are Submodules
|
||||||
|
inventory/
|
||||||
|
|
||||||
|
# Ignore .secret files.... you know, there secret...
|
||||||
|
*.secret
|
||||||
|
|
||||||
|
# Ignore Caching
|
||||||
|
cache/
|
29
ansible.cfg
Normal file
29
ansible.cfg
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[defaults]
|
||||||
|
inventory = ./inventory/
|
||||||
|
host_key_checking = False
|
||||||
|
retry_files_enabled = False
|
||||||
|
|
||||||
|
# Caching-Einstellungen
|
||||||
|
gathering = smart
|
||||||
|
fact_caching = jsonfile
|
||||||
|
fact_caching_connection = ./cache
|
||||||
|
fact_caching_timeout = 86400
|
||||||
|
|
||||||
|
# Rollen-Pfade
|
||||||
|
roles_path = ./roles/global:./roles/custom
|
||||||
|
|
||||||
|
# Vault-Einstellungen
|
||||||
|
vault_password_file = ./vault.secret
|
||||||
|
|
||||||
|
# Ansible-Verhalten
|
||||||
|
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by @{UID} on {host}
|
||||||
|
|
||||||
|
[privilege_escalation]
|
||||||
|
become = True
|
||||||
|
become_method = sudo
|
||||||
|
become_user = root
|
||||||
|
become_ask_pass = False
|
||||||
|
|
||||||
|
[ssh_connection]
|
||||||
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
|
||||||
|
pipelining = True
|
Loading…
Add table
Reference in a new issue