first commit
This commit is contained in:
commit
5816898404
50 changed files with 1031 additions and 0 deletions
25
ansible.cfg
Normal file
25
ansible.cfg
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[defaults]
|
||||
# Specify the inventory file
|
||||
inventory = inventory/hosts.yaml
|
||||
|
||||
# Define the directory for host and group variables
|
||||
host_vars_inventory = inventory/host_vars
|
||||
group_vars_inventory = inventory/group_vars
|
||||
|
||||
# Set the logging verbosity level
|
||||
# verbosity = 2
|
||||
|
||||
log_path = ./ansible.log
|
||||
|
||||
# Set the default user for SSH connections
|
||||
remote_user = ansible
|
||||
|
||||
# Define the default become method
|
||||
become_method = sudo
|
||||
|
||||
[persistent_connection]
|
||||
# Controls how long the persistent connection will remain idle before it is destroyed
|
||||
connect_timeout=30
|
||||
|
||||
# Controls the amount of time to wait for response from remote device before timing out persistent connection
|
||||
command_timeout=30
|
||||
Loading…
Add table
Add a link
Reference in a new issue