To install this plugin, copy and paste this code into your Packer configuration, then run packer init
.
packer {
required_plugins {
name = {
# source represents the GitHub URI to the plugin repository without the `packer-plugin-` prefix.
source = "github.com/organization/name"
version = ">=0.0.1"
}
}
}
Alternatively, you can use packer plugins install
to manage installation of this plugin.
$ packer plugins install github.com/organization/plugin-name
The Scaffolding plugin is intended as a starting point for creating Packer plugins
- builder - The scaffolding builder is used to create endless Packer plugins using a consistent plugin structure.
- provisioner - The scaffolding provisioner is used to provisioner Packer builds.
- post-processor - The scaffolding post-processor is used to export scaffolding builds.
- data source - The scaffolding data source is used to export scaffolding data.