From 472a7820eb75df758616d90286a3f6fdbb4d24e0 Mon Sep 17 00:00:00 2001 From: Sergio Millan Rodriguez Date: Mon, 16 Jul 2018 11:39:15 +0200 Subject: [PATCH] Using UI keypair meaningful message --- builder/cloudstack/step_create_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/cloudstack/step_create_instance.go b/builder/cloudstack/step_create_instance.go index 49c728f66..81f0c0699 100644 --- a/builder/cloudstack/step_create_instance.go +++ b/builder/cloudstack/step_create_instance.go @@ -48,7 +48,7 @@ func (s *stepCreateInstance) Run(_ context.Context, state multistep.StateBag) mu if keypair, ok := state.GetOk("keypair"); ok { kp := keypair.(string) - ui.Message(fmt.Sprintf("Found keypair: %s", kp)) + ui.Message(fmt.Sprintf("Using keypair: %s", kp)) p.SetKeypair(kp) }