Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.72 KB

README.md

File metadata and controls

55 lines (37 loc) · 1.72 KB

Installation

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

Components

The Scaffolding plugin is intended as a starting point for creating Packer plugins

Builders

  • builder - The scaffolding builder is used to create endless Packer plugins using a consistent plugin structure.

Provisioners

  • provisioner - The scaffolding provisioner is used to provisioner Packer builds.

Post-processors

  • post-processor - The scaffolding post-processor is used to export scaffolding builds.

Data Sources

  • data source - The scaffolding data source is used to export scaffolding data.