Remove some unecessary debug output I added
This commit is contained in:
parent
244639cf3d
commit
e586d05a7d
|
@ -123,7 +123,6 @@ func resourceAwsEipRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
describeAddresses, err := ec2conn.DescribeAddresses(req)
|
describeAddresses, err := ec2conn.DescribeAddresses(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if ec2err, ok := err.(aws.APIError); ok && ec2err.Code == "InvalidAllocationID.NotFound" {
|
if ec2err, ok := err.(aws.APIError); ok && ec2err.Code == "InvalidAllocationID.NotFound" {
|
||||||
log.Printf("[DEBUG] EIP describe configuration: %#v", req)
|
|
||||||
d.SetId("")
|
d.SetId("")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue