Sha256: 42c1bfd32275c9477fdf37f1205bdd51bebf4e0e476cdf5cc3529a8f975b10e3

Contents?: true

Size: 892 Bytes

Versions: 6

Compression:

Stored size: 892 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-rackspace'

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

  config.vm.box = 'dummy'
  config.vm.provider :rackspace do |rackspace|
    rackspace.username = ENV['DEV_RACKSPACE_USERNAME']
    rackspace.api_key = ENV['DEV_RACKSPACE_API_KEY']
    rackspace.flavor = /512MB/
    rackspace.image = /Ubuntu 12.04/
    rackspace.public_key_path = '~/.ssh/id_rsa.pub'
    # TODO: - switch this to the `override.ssh.private_key_path` syntax once
    # `vagrant-rackspace` is updated.
    config.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

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-puppet-install-7.0.0 test/acceptance/rackspace/Vagrantfile
vagrant-puppet-install-6.0.1 test/acceptance/rackspace/Vagrantfile
vagrant-puppet-install-6.0.0 test/acceptance/rackspace/Vagrantfile
vagrant-puppet-install-5.0.0 test/acceptance/rackspace/Vagrantfile
vagrant-puppet-install-4.1.0 test/acceptance/rackspace/Vagrantfile
vagrant-puppet-install-4.0.1 test/acceptance/rackspace/Vagrantfile