2016-08-01 07:09:07 -04:00
---
2017-06-14 21:04:16 -04:00
description: 'The ProfitBricks builder is able to create images for ProfitBricks cloud.'
2016-08-01 07:09:07 -04:00
layout: docs
2017-06-14 21:04:16 -04:00
page_title: 'ProfitBricks - Builders'
sidebar_current: 'docs-builders-profitbricks'
2017-03-25 18:13:52 -04:00
---
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
# ProfitBricks Builder
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
Type: `profitbricks`
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
The ProfitBricks Builder is able to create virtual machines for [ProfitBricks ](https://www.profitbricks.com ).
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
## Configuration Reference
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
There are many configuration options available for the builder. They are
segmented below into two categories: required and optional parameters. Within
each category, the available configuration keys are alphabetized.
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
In addition to the options listed here, a
[communicator ](/docs/templates/communicator.html ) can be configured for this
builder.
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
### Required
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `image` (string) - ProfitBricks volume image. Only Linux public images are supported. To obtain full list of available images you can use [ProfitBricks CLI ](https://github.com/profitbricks/profitbricks-cli#image ).
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `password` (string) - ProfitBricks password. This can be specified via environment variable \`PROFITBRICKS\_PASSWORD', if provided. The value definded in the config has precedence over environemnt variable.
2016-08-31 07:55:11 -04:00
2017-06-14 21:04:16 -04:00
- `username` (string) - ProfitBricks username. This can be specified via environment variable \`PROFITBRICKS\_USERNAME', if provided. The value definded in the config has precedence over environemnt variable.
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
### Optional
2016-07-07 04:28:46 -04:00
2017-06-14 21:04:16 -04:00
- `cores` (integer) - Amount of CPU cores to use for this build. Defaults to "4".
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `disk_size` (string) - Amount of disk space for this image in GB. Defaults to "50"
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `disk_type` (string) - Type of disk to use for this image. Defaults to "HDD".
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `location` (string) - Defaults to "us/las".
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `ram` (integer) - Amount of RAM to use for this image. Defalts to "2048".
2016-11-15 18:17:30 -05:00
2017-06-14 21:04:16 -04:00
- `retries` (string) - Number of retries Packer will make status requests while waiting for the build to complete. Default value 120 seconds.
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `snapshot_name` (string) - If snapshot name is not provided Packer will generate it
2016-08-01 07:09:07 -04:00
2017-06-14 21:04:16 -04:00
- `snapshot_password` (string) - Password for the snapshot.
2016-07-01 08:28:29 -04:00
2017-06-14 21:04:16 -04:00
- `url` (string) - Endpoint for the ProfitBricks REST API. Default URL "< https: // api . profitbricks . com / rest / v2 > "
2016-07-07 04:28:46 -04:00
2016-08-01 07:09:07 -04:00
## Example
2016-07-01 08:28:29 -04:00
2016-08-01 07:09:07 -04:00
Here is a basic example:
2016-07-07 04:28:46 -04:00
2017-06-14 21:04:16 -04:00
``` json
2016-07-01 08:28:29 -04:00
{
"builders": [
{
"image": "Ubuntu-16.04",
2016-08-01 07:09:07 -04:00
"type": "profitbricks",
"disk_size": "5",
"snapshot_name": "double",
"snapshot_password": "test1234",
2016-11-17 15:15:28 -05:00
"ssh_username" :"root",
2016-08-01 07:09:07 -04:00
"timeout": 100
2016-07-01 08:28:29 -04:00
}
2016-08-01 07:09:07 -04:00
]
2016-07-01 08:28:29 -04:00
}
2017-02-02 04:24:45 -05:00
```