Uploads built Vagrant boxes to S3 and manages a manifest file for versioned boxes.
The easiest way to install this post-processor is to download a pre-built binary. The builds are available from the
GitHub releases page. Follow the link, select the
latest release, download the correct binary for your platform, then rename the file to
packer-post-processor-vagrant-s3
and place it in ~/.packer.d/plugins
so that Packer can find it (create the
directory if it doesn't exist).
You'll need git and go installed for this. First, download the code by running the following command:
$ go get github.com/lmars/packer-post-processor-vagrant-s3
Then, copy the plugin into ~/.packer.d/plugins
directory:
$ mkdir $HOME/.packer.d/plugins
$ cp $GOPATH/bin/packer-post-processor-vagrant-s3 $HOME/.packer.d/plugins
Add the post-processor to your packer template after the vagrant
post-processor:
{
"variables": {
"version": "0.0.1",
"box_organization": "my-organization",
"box_name": "my-cool-project"
},
"builders": [ ... ],
"provisioners": [ ... ],
"post-processors": [
[
{
"type": "vagrant"
...
},
{
"type": "vagrant-s3",
"region": "us-east-1",
"bucket": "my-s3-bucket",
"manifest": "vagrant/json/{{ user `box_organization` }}/{{ user `box_name` }}.json",
"box_dir": "vagrant/boxes/{{ user `box_organization` }}/{{ user `box_name` }}",
"box_name": "{{ user `box_organization` }}/{{ user `box_name` }}",
"version": "{{ user `version` }}"
}
]
]
}
NOTE: The post-processors must be a nested array (i.e.: a Packer sequence definition) so that they run in order. See the Packer template documentation for more information.
The above will result in the following objects being created in S3:
https://s3.amazonaws.com/my-s3-bucket/vagrant/json/my-organization/my-cool-project.json
https://s3.amazonaws.com/my-s3-bucket/vagrant/boxes/my-organization/my-cool-project/0.0.1/packer_virtualbox-iso_virtualbox.box
You can now use point your Vagrantfile
to the manifest by using something like this:
Vagrant.configure(2) do |config|
config.vm.box = "my-organization/my-cool-project"
config.vm.box_url = "https://s3.amazonaws.com/my-s3-bucket/vagrant/json/my-organization/my-cool-project.json"
end
When pointing the Vagrantfile
at a manifest instead of directly at a box you retain traditional features such as
versioning and multiple providers.
There are three AWS credential providers that are used:
Static credentials are used when both of the configuration variables access_key_id
and
secret_key
are defined:
{
"post-processors": [
[
{
"type": "vagrant-s3",
...
"access_key_id": "AKIAIOSFODNN7EXAMPLE",
"secret_key": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY",
"session_token": "{{ user `session_token` }}",
...
}
]
]
}
It isn't necessary to define the session_token
variable, even when using the STS token service for
authenticating. By default the session token will be generated and cached during the initial request.
The only reason to define session_token
is when a token has already been generated on behalf of the
build process via external means (ie: a corporate SSO end-point). You can define this using the
environmental variable $AWS_SESSION_TOKEN
or by passing it in from the command line:
$ packer build -var "session_token=$TOKEN" template.json
Shared credentials are used when either of the configuration variables are defined:
{
"post-processors": [
[
{
"type": "vagrant-s3",
...
"credentials": "~/.aws/credentials",
"profile": "vagrant-s3-creds",
}
]
]
}
The above configuration will use the [vagrant-s3-creds]
profile from the credentials file located at
~/.aws/credentials
:
[vagrant-s3-creds]
aws_access_key_id = AKIAIOSFODNN7EXAMPLE
aws_secret_access_key = wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
If credentials
is not defined then the environmental variable $AWS_SHARED_CREDENTIALS_FILE
will
be used to look for a credentials file, otherwise it will look for it in the default location
($HOME/.aws/credentials
).
If the profile
variable is not defined, the environmental variable $AWS_PROFILE
will be used,
otherwise the [default]
profile will be used if it exists.
Environmental credentials are used when none of the other variables are defined and will instead attempt to populate the credentials using the following environmental variables:
$AWS_ACCESS_KEY_ID
($AWS_ACCESS_KEY
if unset)$AWS_SECRET_ACCESS_KEY
($AWS_SECRET_KEY
if unset)$AWS_SESSION_TOKEN
All configuration properties are required, except where noted.
The S3 region of the bucket (please see next section).
Valid values:
The S3 bucket name where you want to upload the box and the manifest.
The path to the manifest file in your bucket. If you don't have a manifest, don't worry, one will be created. We recommend that you name you manifest the same as your box.
This controls what users of your box will set vm.config.box_url
to in their Vagrantfile
(e.g. https://s3.amazonaws.com/my-s3-bucket/vagrant/manifest.json
).
The name of your box.
This is what users of your box will set vm.config.box
to in their Vagrantfile
.
The path to a directory in your bucket to store boxes in (e.g. vagrant/boxes
).
The version of the box you are uploading. The box will be uploaded to a S3 directory path that includes the version number (e.g. vagrant/boxes/<version>
).
Only one box can be uploaded per provider for a given version. If you are building an updated box, you should bump this version, meaning users of your box will be made aware of the new version.
You may also omit version
completely, in which case the version will automatically be bumped to the next minor revision (e.g. if you have versions 0.0.1
and 0.0.2
in your manifest the new version will become 0.1.0
).
An access control setting for the uploaded files (both the manifest and box files).
Valid values:
If not set, will use public-read
.
If set, generate presigned urls in the manifest valid for a time duration like "60s" or "12h". See https://golang.org/pkg/time/#ParseDuration for syntax.
If not set, generate normal s3 urls.
If set, this will be used as the base url for all urls. This can not be used in combination with the signed_expiry setting.
If not set, generate normal s3 urls.
If set, the S3 storage class for the uploaded box file will be set to this. Defaults to STANDARD
, which is the
default for S3. Valid values are STANDARD
, STANDARD_IA
(infrequent access), or REDUCED_REDUNDANCY
.
The part size (in bytes) to use when uploading the box to S3. See the AWS SDK for the default value.
The concurrency to use when uploading the box to S3. See the AWS SDK for the default value. Lower this if you have difficulties successfully uploading a box on slow/unreliable connections.