|
|
|
|
@ -63,8 +63,8 @@ type Config struct {
|
|
|
|
|
ImageDescription string `mapstructure:"image_description" required:"false"`
|
|
|
|
|
// Key/value pair tags to add to the created image.
|
|
|
|
|
ImageTags map[string]string `mapstructure:"image_tags" required:"false"`
|
|
|
|
|
// Same as [`image_tags`](#image_tags) but defined as a singular repeatable block
|
|
|
|
|
// containing a key and a value field. In HCL2 mode the
|
|
|
|
|
// Same as [`image_tags`](#image_tags) but defined as a singular repeatable
|
|
|
|
|
// block containing a key and a value field. In HCL2 mode the
|
|
|
|
|
// [`dynamic_block`](https://packer.io/docs/configuration/from-1.5/expressions.html#dynamic-blocks)
|
|
|
|
|
// will allow you to create those programatically.
|
|
|
|
|
ImageTag hcl2template.KeyValues `mapstructure:"image_tag" required:"false"`
|
|
|
|
|
@ -77,8 +77,8 @@ type Config struct {
|
|
|
|
|
// Key/value pair tags to
|
|
|
|
|
// add to the created server.
|
|
|
|
|
VmTags map[string]string `mapstructure:"vm_tags" required:"false"`
|
|
|
|
|
// Same as [`vm_tags`](#vm_tags) but defined as a singular repeatable block containing
|
|
|
|
|
// a key and a value field. In HCL2 mode the
|
|
|
|
|
// Same as [`vm_tags`](#vm_tags) but defined as a singular repeatable block
|
|
|
|
|
// containing a key and a value field. In HCL2 mode the
|
|
|
|
|
// [`dynamic_block`](https://packer.io/docs/configuration/from-1.5/expressions.html#dynamic-blocks)
|
|
|
|
|
// will allow you to create those programatically.
|
|
|
|
|
VmTag hcl2template.KeyValues `mapstructure:"vm_tag" required:"false"`
|
|
|
|
|
|