Terraform import for route53 not importing all records

Terraform Version

Terraform v0.14.5
...

Terraform Configuration Files

Below is tf file which we created

resource "aws_route53_record" "this" {

}
resource "aws_route53_zone" "this" {

}
...

Expected Behavior

It should only update the existing resources.
Plan: 2 to add, 0 to change, 3 to destroy.

Actual Behavior

it is destorying the reasource

Steps to Reproduce

  1. terraform init
  2. terraform import aws_route53_record.this <r53_id>_<r53>_SOA
  3. terraform plan

Additional Context

we want to migrate our R53 into terraform for this we import command for importing r53 and state file created successfully but when we run terraform plan we see it is destroying existing resource and we are not getting why it is destroying the whole resource.