Added map structure type to config changes.

This commit is contained in:
Ladar Levison 2018-12-18 00:48:58 -06:00
parent 6ac5971288
commit 3cc83167c8
1 changed files with 3 additions and 3 deletions

View File

@ -16,9 +16,9 @@ const BuilderId = "packer.post-processor.docker-import"
type Config struct {
common.PackerConfig `mapstructure:",squash"`
Repository string `mapstructure:"repository"`
Tag string `mapstructure:"tag"`
Changes []string
Repository string `mapstructure:"repository"`
Tag string `mapstructure:"tag"`
Changes []string `mapstructure:"changes"`
ctx interpolate.Context
}