packer-cn/website/source/docs/builders/scaleway.html.md

96 lines
3.5 KiB
Markdown
Raw Normal View History

2017-04-06 16:08:54 +02:00
---
layout: docs
sidebar_current: docs-builders-scaleway
page_title: Scaleway - Builders
description: |-
The Scaleway Packer builder is able to create new images for use with
2018-02-08 11:53:05 -08:00
Scaleway BareMetal and Virtual cloud server. The builder takes a source
image, runs any provisioning necessary on the image after launching it, then
snapshots it into a reusable image. This reusable image can then be used as
the foundation of new servers that are launched within Scaleway.
2017-04-06 16:08:54 +02:00
---
# Scaleway Builder
Type: `scaleway`
The `scaleway` Packer builder is able to create new images for use with
2017-04-06 16:08:54 +02:00
[Scaleway](https://www.scaleway.com). The builder takes a source image,
runs any provisioning necessary on the image after launching it, then snapshots
it into a reusable image. This reusable image can then be used as the foundation
of new servers that are launched within Scaleway.
The builder does *not* manage snapshots. Once it creates an image, it is up to you
to use it or delete it.
## Configuration Reference
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.
In addition to the options listed here, a
[communicator](/docs/templates/communicator.html) can be configured for this
builder.
### Required:
2018-02-08 11:53:05 -08:00
- `api_access_key` (string) - The api\_access\_key to use to access your
account. It can also be specified via environment variable
`SCALEWAY_API_ACCESS_KEY`. Your access key is available in the
["Credentials" section](https://cloud.scaleway.com/#/credentials) of the
control panel.
2017-04-06 16:08:54 +02:00
2018-02-08 11:53:05 -08:00
- `api_token` (string) - The organization TOKEN to use to access your
account. It can also be specified via environment variable
`SCALEWAY_API_TOKEN`. Your tokens are available in the ["Credentials"
section](https://cloud.scaleway.com/#/credentials) of the control panel.
2017-04-06 16:08:54 +02:00
2018-02-08 11:53:05 -08:00
- `image` (string) - The UUID of the base image to use. This is the image
that will be used to launch a new server and provision it. See
<https://api-marketplace.scaleway.com/images> get the complete list of the
accepted image UUID.
2017-04-06 16:08:54 +02:00
2018-02-08 11:53:05 -08:00
- `region` (string) - The name of the region to launch the server in (`par1`
or `ams1`). Consequently, this is the region where the snapshot will be
available.
2017-04-06 16:08:54 +02:00
2018-02-08 11:53:05 -08:00
- `commercial_type` (string) - The name of the server commercial type: `C1`,
`C2S`, `C2M`, `C2L`, `X64-2GB`, `X64-4GB`, `X64-8GB`, `X64-15GB`,
`X64-30GB`, `X64-60GB`, `X64-120GB`, `ARM64-2GB`, `ARM64-4GB`, `ARM64-8GB`,
`ARM64-16GB`, `ARM64-32GB`, `ARM64-64GB`, `ARM64-128GB`
2017-04-06 16:08:54 +02:00
### Optional:
2018-02-08 11:53:05 -08:00
- `server_name` (string) - The name assigned to the server. Default
`packer-UUID`
2017-04-06 16:08:54 +02:00
2018-02-08 11:53:05 -08:00
- `image_name` (string) - The name of the resulting image that will appear in
your account. Default `packer-TIMESTAMP`
2018-02-08 11:53:05 -08:00
- `snapshot_name` (string) - The name of the resulting snapshot that will
2017-07-11 14:06:53 +02:00
appear in your account. Default `packer-TIMESTAMP`
2017-04-06 16:08:54 +02:00
## Basic Example
Here is a basic example. It is completely valid as soon as you enter your own
access tokens:
```json
{
"type": "scaleway",
"api_access_key": "YOUR API ACCESS KEY",
2017-04-06 16:08:54 +02:00
"api_token": "YOUR TOKEN",
"image": "UUID OF THE BASE IMAGE",
2017-04-06 16:08:54 +02:00
"region": "par1",
"commercial_type": "X64-2GB",
"ssh_username": "root",
2017-07-11 14:06:53 +02:00
"ssh_private_key_file": "~/.ssh/id_rsa"
2017-04-06 16:08:54 +02:00
}
```
2018-02-08 11:53:05 -08:00
When you do not specified the `ssh_private_key_file`, a temporarily SSH keypair
is generated to connect the server. This key will only allow the `root` user to
connect the server.