mitchellh / vagrant-rackspace

Use Vagrant to manage Rackspace Cloud instances.
MIT License
235 stars 155 forks source link

Using the hidden images #95

Closed paulsheldrake closed 10 years ago

paulsheldrake commented 10 years ago

Is it possible to use the hidden images from this page http://www.rackspace.com/knowledge_center/article/hidden-base-images

krames commented 10 years ago

@paulsheldrake sure is!

For example if you wanted to use f3ae5ef7-dc43-473a-b9d6-65e3f2cb7867, your config.vm.provider block in your Vagrantfile would look similar to this:

  config.vm.provider :rackspace do |rs|
    rs.username = ENV['RAX_USERNAME']
    rs.api_key  = ENV['RAX_API_KEY']
    rs.flavor   = /1 GB Performance/
    rs.image    = 'f3ae5ef7-dc43-473a-b9d6-65e3f2cb7867'
    rs.rackspace_region = :iad
  end