diff --git a/google/resource_compute_attached_disk.go b/google/resource_compute_attached_disk.go index f792ba4f..5486bf8a 100644 --- a/google/resource_compute_attached_disk.go +++ b/google/resource_compute_attached_disk.go @@ -126,7 +126,7 @@ func resourceAttachedDiskRead(d *schema.ResourceData, meta interface{}) error { instance, err := config.clientCompute.Instances.Get(zv.Project, zv.Zone, zv.Name).Do() if err != nil { - return err + return handleNotFoundError(err, d, fmt.Sprintf("AttachedDisk %q", d.Id())) } // Iterate through the instance's attached disks as this is the only way to