$ip_int = #{ipAddr} def increment_ip() ip = "192.168.56.%d" % [$ip_int] $ip_int += 1 return ip end Vagrant.configure("2") do |config| config.ssh.insert_key = false config.ssh.private_key_path = ["./.ssh/id_rsa","~/.vagrant.d/insecure_private_key"] num_webserver = #{numWebserver} num_loadbalancer = #{numLoadbalancers} (1..num_webserver).each do |nth| machine_id = "#{customerName}-bloated-debian-web%d" % [nth] machine_ip = increment_ip() config.vm.define machine_id do |web| web.vm.box = "ubuntu/focal64" web.vm.hostname = machine_id web.vm.network "private_network", ip: machine_ip web.vm.provision "file", source: "./.ssh/id_rsa.pub", destination: "~/.ssh/authorized_keys" web.vm.provider "virtualbox" do |vb| vb.memory = "1024" vb.gui = false vb.name = machine_id end end end (1..num_loadbalancer).each do |nth| machine_id = "#{customerName}-bloated-debian-lb%d" % [nth] machine_ip = increment_ip() config.vm.define machine_id do |web| web.vm.box = "ubuntu/focal64" web.vm.hostname = machine_id web.vm.network "private_network", ip: machine_ip web.vm.provision "file", source: "./.ssh/id_rsa.pub", destination: "~/.ssh/authorized_keys" web.vm.provider "virtualbox" do |vb| vb.memory = "1024" vb.gui = false vb.name = machine_id end end end end