Merge pull request #181 from qur/overrides
packer: Delete "override" key for config passed to provisioners
This commit is contained in:
commit
85f92e35f6
|
@ -221,6 +221,11 @@ func ParseTemplate(data []byte) (t *Template, err error) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The provisioners not only don't need or want the override settings
|
||||||
|
// (as they are processed as part of the preparation below), but will
|
||||||
|
// actively reject them as invalid configuration.
|
||||||
|
delete(v, "override")
|
||||||
|
|
||||||
raw.rawConfig = v
|
raw.rawConfig = v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue