Skip to content

Instantly share code, notes, and snippets.

@Kami
Last active December 14, 2015 20:48
Show Gist options
  • Select an option

  • Save Kami/5146027 to your computer and use it in GitHub Desktop.

Select an option

Save Kami/5146027 to your computer and use it in GitHub Desktop.
Vagrant.configure("2") do |config|
config.vm.box = "dummy"
config.ssh.private_key_path = "/home/myuser/.ssh/id_rsa_my_private_key"
config.vm.provider :rackspace do |rs|
rs.username = "YOUR USERNAME"
rs.api_key = "YOUR API KEY"
rs.flavor = /512MB/
rs.image = /Ubuntu/
rs.public_key_path = "my_custom_key.pub"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment