Initial commit.
This commit is contained in:
19
ansible.cfg
Normal file
19
ansible.cfg
Normal file
@ -0,0 +1,19 @@
|
||||
[defaults]
|
||||
# Use the inventory file in the current directory
|
||||
inventory = inventory.ini
|
||||
|
||||
# The user to connect to the remote hosts with
|
||||
remote_user = pkhamre
|
||||
|
||||
# The private key to use for SSH authentication
|
||||
private_key_file = ~/.ssh/id_ed25519
|
||||
|
||||
# Disable host key checking for simplicity with new Vagrant VMs
|
||||
host_key_checking = False
|
||||
|
||||
[privilege_escalation]
|
||||
# Use sudo for privilege escalation (e.g., for installing packages)
|
||||
become = true
|
||||
become_method = sudo
|
||||
become_user = root
|
||||
become_ask_pass = false
|
Reference in New Issue
Block a user