Commit 7f639d89 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/amazon/*,builder/openstack: properly scrub sensitive [GH-554]

parent 26d73e60
...@@ -8,6 +8,9 @@ FEATURES: ...@@ -8,6 +8,9 @@ FEATURES:
BUG FIXES: BUG FIXES:
* core: Won't panic when writing to a bad pipe. [GH-560] * core: Won't panic when writing to a bad pipe. [GH-560]
* builder/amazon/all: Properly scrub access key and secret key from logs.
[GH-554]
* builder/openstack: Properly scrub password from logs [GH-554]
* common/uuid: Use cryptographically secure PRNG when generating * common/uuid: Use cryptographically secure PRNG when generating
UUIDs. [GH-552] UUIDs. [GH-552]
......
...@@ -143,7 +143,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -143,7 +143,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
return errs return errs
} }
log.Println(common.ScrubConfig(b.config), b.config.AccessKey, b.config.SecretKey) log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
return nil return nil
} }
......
...@@ -56,7 +56,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -56,7 +56,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
return errs return errs
} }
log.Println(common.ScrubConfig(b.config), b.config.AccessKey, b.config.SecretKey) log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
return nil return nil
} }
......
...@@ -159,7 +159,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -159,7 +159,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
return errs return errs
} }
log.Println(common.ScrubConfig(b.config), b.config.AccessKey, b.config.SecretKey) log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
return nil return nil
} }
......
...@@ -51,7 +51,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -51,7 +51,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
return errs return errs
} }
log.Println(common.ScrubConfig(b.config), b.config.Password) log.Println(common.ScrubConfig(b.config, b.config.Password))
return nil return nil
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment