Sha256: ce6a6edb67453f6dec225c3986f740dcad7b9741cf9f90ebaa4863df63a355ad

Contents?: true

Size: 814 Bytes

Versions: 70

Compression:

Stored size: 814 Bytes

Contents

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

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  vms = {
    'ubuntu_14.04' => {
      :box_url => 'https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box',
      :ip => '33.33.33.0'
    },
    'centos_6.5' => {
      :box_url => 'http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-puppet.box',
      :ip => '33.33.33.1'
    }
  }
  vms.each do |vm_name, vm_opts|
    config.vm.define vm_name do |node_config|
      node_config.vm.box = vm_name
      node_config.vm.box_url = vm_opts.fetch(:box_url)
      node_config.vm.network :private_network, ip: vm_opts.fetch(:ip)
    end
  end
end

Version data entries

70 entries across 70 versions & 3 rubygems

Version Path
s3_website_revived-4.0.2 vagrant/Vagrantfile
s3_website_revived-4.0.1 vagrant/Vagrantfile
s3_website_revived-4.0.0 vagrant/Vagrantfile
s3_website-3.4.0 vagrant/Vagrantfile
s3_website-3.3.0 vagrant/Vagrantfile
s3_website-3.2.0 vagrant/Vagrantfile
s3_website-3.1.0 vagrant/Vagrantfile
s3_website-3.0.0 vagrant/Vagrantfile
s3_website-2.16.0 vagrant/Vagrantfile
s3_website-2.15.1 vagrant/Vagrantfile
s3_website-2.15.0 vagrant/Vagrantfile
s3_website-2.14.3 vagrant/Vagrantfile
s3_website-2.14.2 vagrant/Vagrantfile
s3_website-2.14.1 vagrant/Vagrantfile
s3_website-2.14.0 vagrant/Vagrantfile
s3_website-2.13.0 vagrant/Vagrantfile
s3_website-2.12.3 vagrant/Vagrantfile
s3_website-2.12.2 vagrant/Vagrantfile
s3_website-2.12.1 vagrant/Vagrantfile
s3_website-2.11.2 vagrant/Vagrantfile