No description
  • Go 77.1%
  • Shell 11.9%
  • HCL 6.7%
  • Makefile 2.7%
  • MDX 1.6%
Find a file
Tanmay Jain dbe6bb67d7
Merge pull request #39 from hashicorp/compliance/update-headers-batch-1
[IND-4227] [COMPLIANCE] Update Copyright Headers (Batch 1 of 1)
2025-12-22 15:26:22 +05:30
.circleci [COMPLIANCE] Add Copyright and License Headers (#9) 2023-04-25 16:57:53 -04:00
.github Merge pull request #38 from hashicorp/update-pr-template-pci 2025-05-30 17:47:42 +05:30
.web-docs [COMPLIANCE] Add Copyright and License Headers 2023-10-10 14:15:24 -04:00
builder/order [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
common [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
datasource [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
docs docs: Upgrade plugin to integrations framework 2023-08-22 11:33:49 -04:00
docs-partials/common Add generated docs for AuthConfig type (#2) 2021-07-20 15:43:11 -04:00
example [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
post-processor/receipt [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
provisioner/toppings [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
version [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
.gitignore gitignore: add crash.log to gitignore (#12) 2023-04-25 16:58:13 -04:00
.go-version Managed by Terraform: Update go-version config 2024-08-08 17:41:46 -04:00
.golangci.yml [COMPLIANCE] Add Copyright and License Headers (#9) 2023-04-25 16:57:53 -04:00
.goreleaser.yml [HPR-1702] [Automated] build: Add LICENSE file to release artifacts 2024-04-16 15:02:57 -04:00
CHANGELOG.md add basic files and update sdk 2021-06-15 17:20:48 +02:00
CODEOWNERS Managed by Terraform: Update CODEOWNERS 2023-04-25 18:27:22 -04:00
GNUmakefile makefile: remove old docs targets 2023-09-26 16:32:35 -04:00
go.mod Bump github.com/hashicorp/packer-plugin-sdk from 0.5.4 to 0.6.0 2025-03-26 09:49:05 -04:00
go.sum Bump github.com/hashicorp/packer-plugin-sdk from 0.5.4 to 0.6.0 2025-03-26 09:49:05 -04:00
LICENSE [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
main.go [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 18:22:15 +00:00
README.md Managed by Terraform: Add README.md 2023-04-14 10:48:34 -04:00

Packer Plugin Hashicups

The Hashicups multi-component plugin can be used with HashiCorp Packer to create custom images. For the full list of available features for this plugin see docs.

Installation

Using pre-built releases

Using the packer init command

Starting from version 1.7, Packer supports a new packer init command allowing automatic installation of Packer plugins. Read the Packer documentation for more information.

To install this plugin, copy and paste this code into your Packer configuration . Then, run packer init.

packer {
  required_plugins {
    hashicups = {
      version = ">= 0.0.1"
      source  = "github.com/hashicorp/hashicups"
    }
  }
}

Manual installation

You can find pre-built binary releases of the plugin here. Once you have downloaded the latest archive corresponding to your target OS, uncompress it to retrieve the plugin binary file corresponding to your platform. To install the plugin, please follow the Packer documentation on installing a plugin.

From Sources

If you prefer to build the plugin from sources, clone the GitHub repository locally and run the command go build from the root directory. Upon successful compilation, a packer-plugin-hashicups plugin binary file can be found in the root directory. To install the compiled plugin, please follow the official Packer documentation on installing a plugin.

Configuration

For more information on how to configure the plugin, please read the documentation located in the docs/ directory.

Contributing

  • If you think you've found a bug in the code or you have a question regarding the usage of this software, please reach out to us by opening an issue in this GitHub repository.
  • Contributions to this project are welcome: if you want to add a feature or a fix a bug, please do so by opening a Pull Request in this GitHub repository. In case of feature contribution, we kindly ask you to open an issue to discuss it beforehand.