Hello
I need to solve a big problem, generating the .vagrant folder without stopping and restarting the VM's.
We are using github to store the Vagrant file and the provision scripts, but not the .vagrant folder.
Every time you clone the repo in a different machine you do not know which servers are up and running and which are not.
Let's say I deliver the project to a customer with some of the VM's running and some stopped and the customer runs a 'vagrant status';
they don't see the running machines and if they try to run them, they will run NEW instances
I need to dump (re-generate) the .vagrant/machines/{{machine}}/aws folder and configurations.
There is anyway to do it? Probably tweaking with ruby inside the vagrant file or maybe including the Vagrantfile inside a .rb file you can get that info, but unfortunatelly I'm not ruby programmer.
Hope someone has a solution for that
Thanks in advance.