Using UI keypair meaningful message

This commit is contained in:
Sergio Millan Rodriguez 2018-07-16 11:39:15 +02:00
parent e729b21212
commit 472a7820eb
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}