Skip to content

Instantly share code, notes, and snippets.

@gigibytes
gigibytes / Vagrantfile
Last active March 5, 2024 00:43
Pragmatic Programmer Ruby/Rails Course Vagrantfile + Ansible Playbook
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/mantic64"
config.vm.provision "ansible" do |ansible|
ansible.verbose = "v"
ansible.playbook = "playbook.yml"
end
end