From dfc4c4533b112799738ca9deae9d5c8dc797fcf7 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Thu, 5 Oct 2017 13:40:20 -0700 Subject: [PATCH] add example manifest file to manifest docs --- .../docs/post-processors/manifest.html.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/website/source/docs/post-processors/manifest.html.md b/website/source/docs/post-processors/manifest.html.md index 9d930d241..0f2aa1084 100644 --- a/website/source/docs/post-processors/manifest.html.md +++ b/website/source/docs/post-processors/manifest.html.md @@ -41,3 +41,26 @@ You can simply add `{"type":"manifest"}` to your post-processor section. Below i ] } ``` + +An example manifest file looks like: + +``` json +{ + "builds": [ + { + "name": "docker", + "builder_type": "docker", + "build_time": 1507235854, + "files": [ + { + "name": "packer_example", + "size": 387501056 + } + ], + "artifact_id": "Container", + "packer_run_uuid": "6d5d3185-fa95-44e1-8775-9e64fe2e2d8f" + } + ], + "last_run_uuid": "6d5d3185-fa95-44e1-8775-9e64fe2e2d8f" +} +```