-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathVagrantfile
More file actions
24 lines (20 loc) · 606 Bytes
/
Vagrantfile
File metadata and controls
24 lines (20 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "geerlingguy/ubuntu2004"
config.vm.hostname = "https.test"
config.vm.network "private_network", ip: "192.168.56.84"
config.ssh.insert_key = false
config.vm.provider :virtualbox do |v|
v.memory = 512
end
# Ansible provisioning.
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/main.yml"
ansible.become = true
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3",
}
end
end