Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fideloper/Vaprobash
Browse files Browse the repository at this point in the history
  • Loading branch information
fideloper committed Jul 22, 2014
2 parents 9be0825 + 2680b52 commit 9c79fed
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,18 @@ Vagrant.configure("2") do |config|
mount_options: ['rw', 'vers=3', 'tcp', 'nolock']
}
end

# Adding vagrant-digitalocean provider - https://github.com/smdahlen/vagrant-digitalocean
# Needs to ensure that the vagrant plugin is installed
config.vm.provider :digital_ocean do |provider, override|
override.ssh.private_key_path = '~/.ssh/id_rsa'
override.vm.box = 'digital_ocean'
override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"

provider.token = 'YOUR TOKEN'
provider.image = 'Ubuntu 14.04 x64'
provider.region = 'nyc2'
provider.size = '512mb'
end
####
# Base Items
##########
Expand Down

0 comments on commit 9c79fed

Please sign in to comment.