From 814d05b96e4d283f17b2bdfa359fb04269a9e617 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Thu, 16 Jul 2015 12:16:39 -0500 Subject: [PATCH] communicator/ssh: missing newline on bastion host output --- communicator/ssh/communicator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communicator/ssh/communicator.go b/communicator/ssh/communicator.go index 24f816688f..7e04bb446b 100644 --- a/communicator/ssh/communicator.go +++ b/communicator/ssh/communicator.go @@ -99,7 +99,7 @@ func (c *Communicator) Connect(o terraform.UIOutput) (err error) { if c.connInfo.BastionHost != "" { o.Output(fmt.Sprintf( - "Using configured bastion host..."+ + "Using configured bastion host...\n"+ " Host: %s\n"+ " User: %s\n"+ " Password: %t\n"+