Created
March 24, 2024 09:11
-
-
Save platu/f3e20a67961f5497ff2a9cf464fe4f90 to your computer and use it in GitHub Desktop.
IaC Lab 3 Ansible configuration file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[defaults] | |
# Use inventory/ folder files as source | |
inventory = inventory/ | |
host_key_checking = False # Don't worry about RSA Fingerprints | |
retry_files_enabled = False # Do not create them | |
deprecation_warnings = False # Do not show warnings | |
interpreter_python = /usr/bin/python3 | |
[inventory] | |
enable_plugins = auto, host_list, yaml, ini, toml, script | |
[persistent_connection] | |
command_timeout=100 | |
connect_timeout=100 | |
connect_retry_timeout=100 | |
ssh_type = libssh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment