I’ve used vagrant
for years, and been on teams using it for even longer. Pretty much always for use on AWS, and for development of some web app or cloud thing. AFAICT, this is a pretty common way to use vagrant, but there isn’t an actively supported plugin for AWS. Am I mistaken? Is the deprecated/archived aws plugin/github repo the thing to install? Are vagrant and AWS not a combination hashicorp recommend?
Hi… I wasn’t aware of the plugin, but I do code deployment from my Vagrant DEV instances in a flow order
- Code … Uses Vagrant to provision and run the dev environment
- Commits to the GitHub - Manual
- CI-CD workflow from GIT to reply to AWS EC2
Another way is to use CodeCommit in AWS. But as you say, using vagrant file and provider AWS
vagrant-aws
- Install Plugin
$ vagrant plugin install vagrant-aws
- Vagrant up, with was provider
$ vagrant up --provider=aws
Sample Vagrant File