mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 13:44:24 +00:00
Added configuration file examples for ansible and oci
This commit is contained in:
34
examples/ansible/ansible.cfg
Normal file
34
examples/ansible/ansible.cfg
Normal file
@@ -0,0 +1,34 @@
|
||||
################################################################################
|
||||
## ansible.cfg
|
||||
##
|
||||
## Sources:
|
||||
## - https://docs.ansible.com/ansible/latest/reference_appendices/config.html
|
||||
## - `ansible-config init --disabled -t 'all'`
|
||||
################################################################################
|
||||
|
||||
[defaults]
|
||||
any_errors_fatal=True
|
||||
check_mode_markers=True
|
||||
fact_caching_timeout=600
|
||||
forks=10
|
||||
gathering=smart
|
||||
host_key_checking=False
|
||||
nocows=True
|
||||
use_persistent_connections=True
|
||||
verbosity=3
|
||||
|
||||
[persistent_connection]
|
||||
connect_retry_timeout=5
|
||||
connect_timeout=15
|
||||
|
||||
[connection]
|
||||
pipelining=True
|
||||
|
||||
[diff]
|
||||
always=True
|
||||
|
||||
[tags]
|
||||
skip=test
|
||||
|
||||
[url_lookup]
|
||||
use_netrc=True
|
||||
@@ -1,5 +1,8 @@
|
||||
################################################################################
|
||||
## ~/.oci/config
|
||||
##
|
||||
## Sources:
|
||||
## - https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm
|
||||
################################################################################
|
||||
|
||||
[DEFAULT]
|
||||
|
||||
Reference in New Issue
Block a user