|
|
|
|
@ -175,19 +175,18 @@ func (s *StepRunSourceInstance) Run(state multistep.StateBag) multistep.StepActi
|
|
|
|
|
ui.Message(fmt.Sprintf("Instance ID: %s", instanceId))
|
|
|
|
|
ui.Say(fmt.Sprintf("Waiting for instance (%v) to become ready...", instanceId))
|
|
|
|
|
|
|
|
|
|
describeInstanceStatus := &ec2.DescribeInstanceStatusInput{
|
|
|
|
|
describeInstance := &ec2.DescribeInstancesInput{
|
|
|
|
|
InstanceIds: []*string{aws.String(instanceId)},
|
|
|
|
|
}
|
|
|
|
|
if err := ec2conn.WaitUntilInstanceStatusOk(describeInstanceStatus); err != nil {
|
|
|
|
|
if err := ec2conn.WaitUntilInstanceRunning(describeInstance); err != nil {
|
|
|
|
|
err := fmt.Errorf("Error waiting for instance (%s) to become ready: %s", instanceId, err)
|
|
|
|
|
state.Put("error", err)
|
|
|
|
|
ui.Error(err.Error())
|
|
|
|
|
return multistep.ActionHalt
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
r, err := ec2conn.DescribeInstances(&ec2.DescribeInstancesInput{
|
|
|
|
|
InstanceIds: []*string{aws.String(instanceId)},
|
|
|
|
|
})
|
|
|
|
|
r, err := ec2conn.DescribeInstances(describeInstance)
|
|
|
|
|
|
|
|
|
|
if err != nil || len(r.Reservations) == 0 || len(r.Reservations[0].Instances) == 0 {
|
|
|
|
|
err := fmt.Errorf("Error finding source instance.")
|
|
|
|
|
state.Put("error", err)
|
|
|
|
|
|