We have a vagrant project where we manage our production machines, what will be the best way for us to share the their status?
For now I've shared the .vagrant folder via the git repo? Is this the best way to do it?
We have a vagrant project where we manage our production machines, what will be the best way for us to share the their status?
For now I've shared the .vagrant folder via the git repo? Is this the best way to do it?
Do not include the .vagrant
folder into version control as that includes specifics to the actual initialize VM which is different on each initialized instance and not intended to be included in version control. The best thing to include is the Vagrantfile
and any configuration management scripts which provision the VM.