Added a basic template for the debian11 VM.

This commit is contained in:
2023-05-16 18:18:52 +03:00
commit 1f5fd017de
4 changed files with 83 additions and 0 deletions
Vendored
+20
View File
@@ -0,0 +1,20 @@
Vagrant.configure("2") do |config|
config.vm.provider :libvirt do |libvirt|
libvirt.driver = "kvm"
end
config.vm.define "main" do |subconfig|
subconfig.vm.box = "generic/debian11"
subconfig.vm.hostname = "debian11-ansible-vm"
subconfig.vm.provider :libvirt do |domain|
domain.memory = 4096
domain.cpus = 1
end
subconfig.vm.provision "ansible" do |ansible|
ansible.verbose = "v"
ansible.playbook = "main_playbook.yaml"
end
end
end