Commit 11e2fad6 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #2022 from mefellows/issue/2021

Report error during Temporary Security Group creation in AWS EBS builder
parents 74bcbfa8 a973dce7
......@@ -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
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment