How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "centos/atomic-host-aws"
config.vm.box_version = "7.20151001"
end
vagrant init centos/atomic-host-aws \
--box-version 7.20151001
vagrant up
This version was created about 9 years ago.
In order to use this box, you will need a local Vagrantfile with atleast these options set :
config.vm.provider :aws do |aws, override|
aws.access_key_id = "YOUR KEY"
aws.secret_access_key = "YOUR SECRET KEY"
aws.keypair_name = "KEYPAIR NAME"
override.ssh.private_key_path = "PATH TO YOUR PRIVATE KEY"
done