Created
September 23, 2014 01:27
-
-
Save bcantoni/7f8a54cf7f57caf16b7a to your computer and use it in GitHub Desktop.
Example Vagrant configuration for use with Amazon Web Services (vagrant-aws plugin)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrant on AWS Example | |
# Brian Cantoni | |
# This sample sets up 1 VM ('delta') with only Java installed. | |
# Adjustable settings | |
CFG_TZ = "US/Pacific" # timezone, like US/Pacific, US/Eastern, UTC, Europe/Warsaw, etc. | |
# Provisioning script | |
node_script = <<SCRIPT | |
#!/bin/bash | |
# set timezone | |
echo "#{CFG_TZ}" > /etc/timezone | |
dpkg-reconfigure -f noninteractive tzdata | |
# install a few base packages | |
apt-get update | |
apt-get install vim curl zip unzip git python-pip -y | |
# install java | |
apt-get install openjdk-7-jre -y | |
echo Provisioning is complete | |
SCRIPT | |
# Configure VM server | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.define :delta do |x| | |
x.vm.box = "hashicorp/precise64" | |
x.vm.hostname = "delta" | |
x.vm.provision :shell, :inline => node_script | |
x.vm.provider :virtualbox do |v| | |
v.name = "delta" | |
end | |
x.vm.provider :aws do |aws, override| | |
aws.access_key_id = ENV['AWS_KEY'] | |
aws.secret_access_key = ENV['AWS_SECRET'] | |
aws.keypair_name = ENV['AWS_KEYNAME'] | |
aws.ami = "ami-a7fdfee2" | |
aws.region = "us-west-1" | |
aws.instance_type = "m3.medium" | |
override.vm.box = "dummy" | |
override.ssh.username = "ubuntu" | |
override.ssh.private_key_path = ENV['AWS_KEYPATH'] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment