Sha256: 0acdbde22d4cde89daa66d515030525bf3a3ea10f657a98db41012a76f001916

Contents?: true

Size: 874 Bytes

Versions: 11

Compression:

Stored size: 874 Bytes

Contents

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

# plugins don't seem to be auto-loaded from the bundle
require 'vagrant-puppet-install'
require 'vagrant-aws'

Vagrant.configure("2") do |config|
  config.puppet_install.puppet_version = '3.4.2'

  config.vm.box = "dummy"
  config.vm.provider :aws do |aws, override|
    aws.access_key_id = ENV['DEV_AWS_ACCESS_KEY_ID']
    aws.secret_access_key = ENV['DEV_AWS_SECRET_ACCESS_KEY']
    aws.keypair_name = ENV['USER']

    aws.instance_type = "m1.large"
    aws.ami = "ami-2efa9d47" # Ubuntu 12.04 LTS 64-bit instance root store
    aws.ssh_username = "ubuntu"

    override.ssh.username = "ubuntu"
    override.ssh.private_key_path = "~/.ssh/id_rsa"
  end

  config.vm.provision :puppet do |puppet|
    puppet.manifests_path = File.expand_path('../../../support/manifests', __FILE__)
    puppet.manifest_file  = "base.pp"
  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
vagrant-puppet-install-4.0.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-3.1.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-3.0.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.7.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.6.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.5.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.3.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.2.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.1.0 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.0.1 test/acceptance/aws/Vagrantfile
vagrant-puppet-install-2.0.0 test/acceptance/aws/Vagrantfile