github.com/jerryclinesmith/packer@v0.3.7/website/source/docs/machine-readable/command-inspect.html.markdown (about) 1 --- 2 layout: "docs_machine_readable" 3 page_title: "Command: inspect - Machine-Readable Reference" 4 --- 5 6 # Inspect Command Types 7 8 These are the machine-readable types that exist as part of the output 9 of `packer inspect`. 10 11 <dl> 12 <dt>template-variable (3)</dt> 13 <dd> 14 <p> 15 A <a href="/docs/templates/user-variables.html">user variable</a> 16 defined within the template. 17 </p> 18 19 <p> 20 <strong>Data 1: name</strong> - Name of the variable. 21 </p> 22 23 <p> 24 <strong>Data 2: default</strong> - The default value of the 25 variable. 26 </p> 27 28 <p> 29 <strong>Data 3: required</strong> - If non-zero, then this variable 30 is required. 31 </p> 32 </dd> 33 34 <dt>template-builder (2)</dt> 35 <dd> 36 <p> 37 A builder defined within the template 38 </p> 39 40 <p> 41 <strong>Data 1: name</strong> - The name of the builder. 42 </p> 43 <p> 44 <strong>Data 2: type</strong> - The type of the builder. This will 45 generally be the same as the name unless you explicitly override 46 the name. 47 </p> 48 </dd> 49 50 <dt>template-provisioner (1)</dt> 51 <dd> 52 <p> 53 A provisioner defined within the template. Multiple of these may 54 exist. If so, they are outputted in the order they would run. 55 </p> 56 57 <p> 58 <strong>Data 1: name</strong> - The name/type of the provisioner. 59 </p> 60 </dd> 61 </dl>