Can anyone guide me to how do I include variables in my VagrantFile? I am trying to inject configs into the Vagrantfile from an external file so that I can distribute the co
Use require_relative:
require_relative
require_relative 'vagrant.rb' include MyVars # ...