Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.19 KB

provisioner-name.mdx

File metadata and controls

62 lines (42 loc) · 1.19 KB
description page_title nav_title
The scaffolding provisioner is used to provisioner Packer builds.
Scaffolding - Provisioners
Scaffolding

Scaffolding

Type: scaffolding

The scaffolding provisioner is used to provisioner Packer builds.

Required

  • mock (string) - The name of the mock string to display.

Optional

Example Usage

 source "null" "example" {
   communicator = "none"
 }

 build {
   source "null.example" {
     name = "jay"
   }

   provisioner "scaffolding" {
     mock = "mocking ${source.name}"
   }
 }