No description
  • Go 83.3%
  • MDX 11.6%
  • Shell 3.5%
  • Makefile 0.8%
  • HCL 0.8%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Anurag Sharma 59063e8937
Merge pull request #143 from vin01/main
Remove redundant square braces for ipv6 with latest sdk version
2026-07-14 11:39:06 +05:30
.github [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
.web-docs [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
builder/openstack Merge pull request #143 from vin01/main 2026-07-14 11:39:06 +05:30
docs docs: add packer plugins install to main README 2023-08-30 18:24:15 -04:00
docs-partials/builder/openstack Upgrade packer-plugin-sdk to version 0.6.7 and fix lint issues (#154) 2026-06-22 12:15:13 +05:30
example [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
version [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
.gitignore gitignore: add crash.log to gitignore (#99) 2023-04-25 16:49:09 -04:00
.go-version Upgrade packer-plugin-sdk to version 0.6.7 and fix lint issues (#154) 2026-06-22 12:15:13 +05:30
.golangci.yml Upgrade packer-plugin-sdk to version 0.6.7 and fix lint issues (#154) 2026-06-22 12:15:13 +05:30
.goreleaser.yml Fix goreleaser configuration: update formats syntax and refine sign command options (#158) 2026-06-23 15:55:27 +05:30
CHANGELOG.md Openstack Plugin Release Version 1.1.4 (#156) 2026-06-23 12:00:47 +05:30
CODEOWNERS Managed by Terraform: Update CODEOWNERS 2021-04-27 09:35:49 -04:00
GNUmakefile GNUmakefile: make dev uses packer for install (#122) 2024-04-16 11:11:40 -04:00
go.mod Merge pull request #159 from hashicorp/dependabot/go_modules/github.com/hashicorp/packer-plugin-sdk-0.6.10 2026-07-10 19:40:26 +05:30
go.sum Merge pull request #159 from hashicorp/dependabot/go_modules/github.com/hashicorp/packer-plugin-sdk-0.6.10 2026-07-10 19:40:26 +05:30
LICENSE [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
main.go [COMPLIANCE] Add/Update Copyright Headers (#152) 2026-06-23 12:13:13 +05:30
README.md cut release 1.1.3 2025-11-11 11:27:43 +05:30

Packer Plugin Openstack

The Openstack 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 {
    openstack = {
      version = ">= 1.1.3"
      source  = "github.com/hashicorp/openstack"
    }
  }
}

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