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