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
terraform init
terraform import aws_route53_record.this <r53_id>_<r53>_SOA
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.