20 lines
504 B
INI
20 lines
504 B
INI
[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
|