Rediscloud subscription peering tries to destroy resource after importing

Hi! I have a problem I can’t solve yet:
I imported an existing resource I see it in the state:
tf state show …

resource "rediscloud_subscription_peering" "my-peering" {
    gcp_network_name       = "my-network"
    gcp_peering_id         = "redislabs-peering-xxxx"
    gcp_project_id         = "my-project"
    gcp_redis_network_name = "12345678"
    gcp_redis_project_id   = "123456"
    id                     = "0101/0101"
    provider_name          = "GCP"
    status                 = "active"
    subscription_id        = "000001"
}

I have tf config:

resource "rediscloud_subscription_peering" "my-peering" {
  subscription_id  = "000001"
  provider_name    = "GCP"
  gcp_project_id   = "my-project"
  gcp_network_name = "my-network"
}

But if I try plan:
tf plan -target=rediscloud_subscription_peering.my-peering

Terraform will perform the following actions:

  # rediscloud_subscription_peering.my-peering **must be replaced**
-/+ resource "rediscloud_subscription_peering" "my-peering" {
      + aws_account_id         = (known after apply)
      + aws_peering_id         = (known after apply)
      ~ gcp_peering_id         = "redislabs-peering-xxxxx" -> (known after apply)
      ~ gcp_redis_network_name = "12345678" -> (known after apply)
      ~ gcp_redis_project_id   = "123456" -> (known after apply)
      ~ id                     = "0101/0101" -> (known after apply)
      + region                 = (known after apply)
      ~ status                 = "active" -> (known after apply)
      + vpc_cidr               = (known after apply)
      + vpc_cidrs              = (known after apply) # forces replacement
      + vpc_id                 = (known after apply)
        # (4 unchanged attributes hidden)
    }

Plan: 1 to add, 0 to change, **1 to destroy.**

Maybe someone knows why the resource is trying to recreate and add parameters for aws?
Why changes occur after import if everything is described in the configuration according to the state?

tf v1.5.7
rediscloud v1.5.0

Thanx