@hashicorp
The Vagrant multi-component plugin can be used with HashiCorp Packer to create custom images.
- Official
Updated 2 years ago
- GitHub(opens in new tab)
Vagrant Registry
Type: vagrant-registry
Artifact BuilderId: hashicorp.post-processor.vagrant-registry
HCP Vagrant Box Registry hosts and serves boxes to Vagrant, allowing you to version and distribute boxes to an organization or the public in a simple way.
The Vagrant Registry post-processor enables the upload of Vagrant boxes to HCP Vagrant Box Registry. Currently, the Vagrant Registry post-processor will accept and upload boxes supplied to it from the Vagrant or Artifice post-processors and the Vagrant builder.
Workflow
It's important to understand the workflow that using this post-processor enforces in order to take full advantage of Vagrant and HCP Vagrant Box Registry.
The use of this processor assume that you currently distribute, or plan to distribute, boxes via HCP Vagrant Box Registry. It also assumes you create Vagrant Boxes and deliver them to your team in some fashion.
Here is an example workflow:
- You use Packer to build a Vagrant Box for the
virtualbox
provider - The
vagrant-registry
post-processor is configured to point to the boxhashicorp/foobar
on HCP Vagrant Box Registry via thebox_tag
configuration - The post-processor receives the box from the
vagrant
post-processor - It then creates the box name, or verifies the existence of it, on HCP Vagrant Box Registry
- It then creates the configured version, or verifies the existence of it
- It then creates the configured provider, or verifies the existence of it
- It then creates the configured architecture, or verifies the existence of it
- The box artifact is uploaded to HCP Vagrant Box Registry
- The upload is verified
- The version is released and available to users of the box
Configuration
The configuration allows you to specify the target box that you have access to on HCP Vagrant Box Registry, as well as authentication and version information.
Required
box_tag
(string) - The shorthand tag for your box that maps to the box registry name and the box name. For example,hashicorp/precise64
is the shorthand tag for theprecise64
box in thehashicorp
box registry.version
(string) - The version number, typically incrementing a previous version. The version string is validated based on Semantic Versioning. The string must match a pattern that could be semver, and doesn't validate that the version comes after your previous versions.client_id
(string) - The service principal client ID for the HCP API. This value can be omitted if theHCP_CLIENT_ID
environment variable is set. See the HCP documentation for creating a service principal.client_secret
(string) - The service principal client secret for the HCP API. This value can be omitted if theHCP_CLIENT_SECRET
environment variable is set. See the HCP documentation for creating a service principal.
Optional
architecture
(string) - The architecture of the Vagrant box. This will be detected from the box if possible by default. Supported values: amd64, i386, arm, arm64, ppc64le, ppc64, mips64le, mips64, mipsle, mips, and s390x.default_architecture
(string) - The architecture that should be flagged as the default architecture for this provider.no_release
(boolean) - If set to true, does not release the version on HCP Vagrant Box Registry, making it active. You can manually release the version via the API or Web UI. Defaults tofalse
.keep_input_artifact
(boolean) - When true, preserve the local box after uploading to HCP Vagrant Box Registry. Defaults totrue
.version_description
(string) - Optional Markdown text used as a full-length and in-depth description of the version, typically for denoting changes introducedbox_download_url
(string) - Optional URL for a self-hosted box. If this is set the box will not be uploaded to HCP Vagrant Box Registry. This is a template engine. Therefore, you may use user variables and template functions in this field. The following extra variables are also available in this engine:Architecture
: The architecture of the Vagrant boxProvider
: The Vagrant provider the box is forArtifactId
: The ID of the input artifact.
box_checksum
(string) - Optional checksum for the provider .box file. The type of the checksum is specified within the checksum field as a prefix, ex: "md5:{$checksum}". Valid values are:- null or ""
- "md5:{$checksum}"
- "sha1:{$checksum}"
- "sha256:{$checksum}"
- "sha512:{$checksum}"
no_direct_upload
(boolean) - Whentrue
, upload the box artifact through HCP Vagrant Box Registry instead of directly to the backend storage.
Use with the Vagrant Post-Processor
An example configuration is shown below. Note the use of the post-processors block that wraps both the Vagrant and Vagrant Registry post-processor blocks within the post-processor section. Chaining the post-processors together in this way tells Packer that the artifact produced by the Vagrant post-processor should be passed directly to the Vagrant Registry Post-Processor. It also sets the order in which the post-processors should run.
Failure to chain the post-processors together in this way will result in the wrong artifact being supplied to the Vagrant Registry post-processor. This will likely cause the Vagrant Registry post-processor to error and fail.
JSON
HCL2
Use with the Artifice Post-Processor
An example configuration is shown below. Note the use of the nested array that wraps both the Artifice and Vagrant Registry post-processors within the post-processor section. Chaining the post-processors together in this way tells Packer that the artifact produced by the Artifice post-processor should be passed directly to the Vagrant Registry Post-Processor. It also sets the order in which the post-processors should run.
Failure to chain the post-processors together in this way will result in the wrong artifact being supplied to the Vagrant Registry post-processor. This will likely cause the Vagrant Registry post-processor to error and fail.
Note that the Vagrant box specified in the Artifice post-processor files
array
must end in the .box
extension. It must also be the first file in the array.
Additional files bundled by the Artifice post-processor will be ignored.
JSON
HCL2