--- description: > The scaffolding post-processor is used to export Packer Scaffolding builds. page_title: Scaffolding - Post-Processors nav_title: Scaffolding --- # Scaffolding Type: `scaffolding` The scaffolding post-processor is used to export Packer Scaffolding builds. ### Required - `mock` (string) - The output path where to save exported build to. ### Optional ### Example Usage ```hcl source "scaffolding" "example" { mock = "jay" } build { sources = ["source.scaffolding.example"] post-processor "scaffolding" { mock = "builds/scaffolding.box" } } ```