No description
  • Go 85%
  • MDX 12%
  • HCL 2%
  • PowerShell 0.4%
  • Shell 0.4%
  • Other 0.1%
Find a file
Karthik P 49961bec51
fix: add working ipv6 ssh_interface support (#647)
* fix ipv6 support

* test: add missing unit tests

* docs: update temporary_security_group_source_cidrs and ssh_interface for IPv6 support
2026-01-27 21:27:56 +05:30
.github bumping golang.org/x/crypto to 0.43.0 (#634) 2025-11-19 16:32:55 +05:30
.release changing notification channel ID for slack migration. 2025-10-21 14:47:01 +05:30
.web-docs addressing comments + documentation updates 2025-09-01 16:34:01 +05:30
builder [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) (#641) 2025-12-09 13:03:01 +05:30
common test: add missing unit tests 2026-01-27 10:58:14 +01:00
datasource [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) (#641) 2025-12-09 13:03:01 +05:30
docs CRT migration changes (#566) 2025-08-05 10:43:13 +05:30
docs-partials docs: update temporary_security_group_source_cidrs and ssh_interface for IPv6 support 2026-01-27 11:24:30 +01:00
example [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 2) (#640) 2025-12-09 13:03:39 +05:30
post-processor/import [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 2) (#640) 2025-12-09 13:03:39 +05:30
version [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 2) (#640) 2025-12-09 13:03:39 +05:30
.gitignore gitignore: add crash.log to gitignore 2023-04-24 09:22:28 -04:00
.go-version bumping golang.org/x/crypto to 0.43.0 (#634) 2025-11-19 16:32:55 +05:30
.golangci.yml golangci-lint: update config file to conform with 1.61.0 changes 2025-04-09 10:42:21 -04:00
CHANGELOG.md changelog + version bump for release (#633) 2025-11-19 15:50:18 +05:30
CODEOWNERS Managed by Terraform: Update CODEOWNERS 2021-04-27 09:35:52 -04:00
GNUmakefile GNUmakefile: make dev uses packer for install (#468) 2024-04-16 11:10:44 -04:00
go.mod build(deps): bump github.com/hashicorp/packer-plugin-sdk (#644) 2026-01-21 12:06:23 +05:30
go.sum build(deps): bump github.com/hashicorp/packer-plugin-sdk (#644) 2026-01-21 12:06:23 +05:30
LICENSE [COMPLIANCE] Update MPL 2.0 LICENSE 2022-10-12 16:47:41 -04:00
main.go [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 2) (#640) 2025-12-09 13:03:39 +05:30
manifest.json CRT migration changes (#566) 2025-08-05 10:43:13 +05:30
README.md changelog + version bump for release (#633) 2025-11-19 15:50:18 +05:30

Packer Plugin Amazon

The Amazon 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 {
    amazon = {
      version = ">= 1.8.0"
      source  = "github.com/hashicorp/amazon"
    }
  }
}

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-amazon 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.