Sha256: 31807c398bcd96a1ca70dfce64e66537b253f86b0ecde630f94b08c36c006f91
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure # configures the configuration version (we support older styles for # backwards compatibility). Please don't change it unless you know what # you're doing. Vagrant.configure("2") do |config| # The most common configuration options are documented and commented below. # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. # Every Vagrant development environment requires a box. You can search for # boxes at https://atlas.hashicorp.com/search. config.vm.box = 'profitbricks' config.vm.provider :profitbricks do |profitbricks| profitbricks.username = 'YOUR_PB_USERNAME' profitbricks.password = 'YOUR_PB_PASSWORD' profitbricks.profitbricks_url = 'https://api.profitbricks.com/cloudapi/v3/' profitbricks.datacenter_id = 'pb vagrant test' profitbricks.location = 'de/fkb' profitbricks.image = 'openSUSE-13.2-server-2016-11-01' profitbricks.volume_licence_type = 'LINUX' profitbricks.profitbricks_cores = '1' profitbricks.profitbricks_ram = '2048' profitbricks.image_password = 'PASSWORD' # profitbricks.volume_ssh_keys = ['YOUR_PUBLIC_SSH_KEY'] # if you want to enable SSH (Works with ProfitBricks supplied Linux images) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-profitbricks-1.0.0 | Vagrantfile |