How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "spartan/aws-dummy"
  config.vm.box_version = "1.0.0"
end
vagrant init spartan/aws-dummy \
  --box-version 1.0.0
vagrant up

This version was created over 7 years ago.

AWS Dummy Box

It consists of:

metadata.json:

{
    "provider": "aws"
}

Vagrantfile:

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.provider :aws do |aws|
    aws.ami = "ami-7747d01e"
  end
end
1 provider for this version.
  • aws
    unknown Hosted by Vagrant Cloud (299 Bytes)