Fix for #664, crashed due to ig.Attachements being 0
This commit is contained in:
parent
69b2c245dd
commit
3883e47902
|
@ -60,7 +60,11 @@ func resourceAwsInternetGatewayRead(d *schema.ResourceData, meta interface{}) er
|
||||||
}
|
}
|
||||||
|
|
||||||
ig := igRaw.(*ec2.InternetGateway)
|
ig := igRaw.(*ec2.InternetGateway)
|
||||||
d.Set("vpc_id", ig.Attachments[0].VpcId)
|
if len(ig.Attachments) == 0 {
|
||||||
|
d.SetId("")
|
||||||
|
} else {
|
||||||
|
d.Set("vpc_id", ig.Attachments[0].VpcId)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue