zabbix/Vagrantfile
meaz 10dcfe9818 v6 update (#1)
It updates vagrant, zabbix to v6, the different templates, etc.

Tested on vagrant and proxmox machine.

Co-authored-by: meaz <meaz@disroot.org>
Reviewed-on: #1
2023-08-07 06:13:22 +00:00

21 lines
744 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
#config.ssh.insert_key = false
config.vm.define "zabbix" do |zabbix|
zabbix.vm.box = "generic/debian11"
zabbix.vm.provider :libvirt do |libvirt|
libvirt.memory = 256
end
zabbix.vm.network "forwarded_port", guest: 80, host: 8888, host_ip: "192.168.33.27"
zabbix.vm.network "forwarded_port", guest: 443, host: 4443, host_ip: "192.168.33.27"
zabbix.vm.network "private_network", ip: "192.168.33.27"
end
end