builder/amazon/ebs: nicer output

This commit is contained in:
Mitchell Hashimoto 2013-12-12 12:24:51 -08:00
parent 4677f38882
commit 5e0da21173
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ func (s *stepCreateAMI) Run(state multistep.StateBag) multistep.StepAction {
}
// Set the AMI ID in the state
ui.Say(fmt.Sprintf("AMI: %s", createResp.ImageId))
ui.Message(fmt.Sprintf("AMI: %s", createResp.ImageId))
amis := make(map[string]string)
amis[ec2conn.Region.Name] = createResp.ImageId
state.Put("amis", amis)