From 4f24fe50002965487abd76bc8ff2a35bcd866612 Mon Sep 17 00:00:00 2001 From: Matthew Hooker Date: Sun, 13 Oct 2013 11:03:45 -0700 Subject: [PATCH] common/config: strip keys appropriate for OpenStack. --- builder/openstack/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/openstack/builder.go b/builder/openstack/builder.go index 6e9c961b4..83c5e0b15 100644 --- a/builder/openstack/builder.go +++ b/builder/openstack/builder.go @@ -51,7 +51,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { return errs } - log.Println(common.ScrubConfig(b.config), b.config.AccessKey, b.config.SecretKey) + log.Println(common.ScrubConfig(b.config), b.config.Password) return nil }