https://github.com/den-is/packer-templates
Golden OS images templates for Hashicorp Packer
https://github.com/den-is/packer-templates
debian packer packer-template rockylinux
Last synced: 28 days ago
JSON representation
Golden OS images templates for Hashicorp Packer
- Host: GitHub
- URL: https://github.com/den-is/packer-templates
- Owner: den-is
- License: mit
- Created: 2024-06-05T17:20:06.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T08:03:44.000Z (over 1 year ago)
- Last Synced: 2025-12-04T15:19:26.462Z (7 months ago)
- Topics: debian, packer, packer-template, rockylinux
- Language: HCL
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Golder OS images tempalates for Hashicorp Packer
Golder OS images templates for Hashicorp [Packer](https://www.packer.io/)
Provided golden OS images templates have very basic and relaxed configurations.
Feel free to adopt packer and provisioner scripts to your needs. Use provided templates as a starting point for your own project.
By default building images for [VirtualBox](https://www.virtualbox.org/), with more providers potentially to come.
## Instructions
```sh
git clone https://github.com/den-is/packer-templates.git
cd packer-templates
# cd to desired OS template dir
cd debian12
# Provide appropriate values to vars listed in `main.pkr.hcl`
# Using any available method listed here:
# https://developer.hashicorp.com/packer/guides/hcl/variables
# init project. this will download required_plugins listed in `main.pkr.hcl`
packer init .
# build
packer build .
# track progress and get build artifact from the `./output/` dir (created by packer automatically)
```