Skip to content

Commit

Permalink
command/import: change import message to 'prepared' (#20018)
Browse files Browse the repository at this point in the history
* Change import message to 'prepared'
* Update command/hook_ui.go

Co-Authored-By: Kristin Laemmert <[email protected]>
  • Loading branch information
YakDriver and mildwonkey committed Jul 1, 2019
1 parent fbbb4dd commit 02efe97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command/hook_ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,10 @@ func (h *UiHook) PostImportState(addr addrs.AbsResourceInstance, imported []prov
h.once.Do(h.init)

h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][bold][green]%s: Import complete!", addr)))
"[reset][bold][green]%s: Import prepared!", addr)))
for _, s := range imported {
h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][green] Imported %s",
"[reset][green] Prepared %s for import",
s.TypeName,
)))
}
Expand Down

0 comments on commit 02efe97

Please sign in to comment.