Merge pull request #8612 from hashicorp/fix_8611

fix config decode
pull/8614/head
Megan Marsh 6 years ago committed by GitHub
commit b498e5af12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,7 +20,7 @@ type Config struct {
func (c *Config) Prepare(raws ...interface{}) ([]string, error) {
err := config.Decode(&c, &config.DecodeOpts{
err := config.Decode(c, &config.DecodeOpts{
Interpolate: true,
InterpolateFilter: &interpolate.RenderFilter{},
}, raws...)

Loading…
Cancel
Save