Merge pull request #2022 from mefellows/issue/2021

Report error during Temporary Security Group creation in AWS EBS builder
pull/2148/head
Mitchell Hashimoto 11 years ago
commit 11e2fad6d0

@ -46,6 +46,7 @@ func (s *StepSecurityGroup) Run(state multistep.StateBag) multistep.StepAction {
groupResp, err := ec2conn.CreateSecurityGroup(group)
if err != nil {
ui.Error(err.Error())
state.Put("error", err)
return multistep.ActionHalt
}

Loading…
Cancel
Save