No description
  • Go 86.6%
  • MDX 10.8%
  • Shell 1.9%
  • Makefile 0.5%
  • HCL 0.2%
Find a file
Tanmay Jain 5c3fada74c
Merge pull request #341 from hashicorp/compliance/update-headers-batch-1
[IND-4227] [COMPLIANCE] Update Copyright Headers (Batch 1 of 1)
2025-12-22 15:24:18 +05:30
.github Merge pull request #322 from hashicorp/update-pr-template-pci 2025-05-30 17:50:33 +05:30
.web-docs build(deps): bump github.com/hashicorp/packer-plugin-sdk 2025-04-02 11:45:54 -04:00
builder/proxmox [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 17:13:46 +00:00
docs iso: reintroduce iso config struct for boot iso 2024-09-26 09:27:32 -04:00
docs-partials/builder/proxmox api: pool assignment fix 2024-10-28 16:21:22 -04:00
version [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 17:13:46 +00:00
.gitignore gitignore: add crash.log to gitignore (#188) 2023-04-25 16:50:19 -04:00
.go-version Managed by Terraform: Update go-version config 2024-08-08 17:42:00 -04:00
.golangci.yml golangci-lint: update config file to conform with 1.61.0 changes 2025-04-09 11:05:37 -04:00
.goreleaser.yml [HPR-1702] build: Add LICENSE file to release artifacts 2024-04-16 11:39:23 -04:00
CHANGELOG.md Cut release 1.1.0 2022-11-01 16:11:05 -04:00
CODEOWNERS Managed by Terraform: Update CODEOWNERS 2023-03-30 13:15:10 -04:00
GNUmakefile GNUmakefile: make dev uses packer for install (#255) 2024-04-16 11:11:51 -04:00
go.mod build(deps): bump github.com/hashicorp/packer-plugin-sdk 2025-04-02 11:45:54 -04:00
go.sum build(deps): bump github.com/hashicorp/packer-plugin-sdk 2025-04-02 11:45:54 -04:00
LICENSE [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 17:13:46 +00:00
main.go [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) 2025-12-08 17:13:46 +00:00
README.md version: cut release v1.2.2 2024-12-12 14:04:08 -05:00

Packer Plugin Proxmox

The Proxmox 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.

Note

Releases prior to v1.1.0 were incorrectly registered as proxmox-promox-iso and proxmox-proxmox-clone. You are encouraged to upgrade any locally installed version of this plugin to v1.1.0. Refer to Plugin loading issue for more details.

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 {
    proxmox = {
      version = ">= 1.2.2"
      source  = "github.com/hashicorp/proxmox"
    }
  }
}

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