diff --git a/tidb-cloud/terraform-use-dedicated-vpc-peering-resource.md b/tidb-cloud/terraform-use-dedicated-vpc-peering-resource.md index 7f00a3e0f003d..be44dfc083c26 100644 --- a/tidb-cloud/terraform-use-dedicated-vpc-peering-resource.md +++ b/tidb-cloud/terraform-use-dedicated-vpc-peering-resource.md @@ -152,12 +152,12 @@ For example, you can import a VPC peering that is not created by Terraform. 1. Add an import block for the new `tidbcloud_dedicated_vpc_peering` resource. - Add the following import block to your `.tf` file, replace `example` with a desired resource name, and replace `${id}` with the format of `cluster_id,vpc_peering_id`: + Add the following import block to your `.tf` file, replace `example` with a desired resource name, and replace `${vpc_peering_id}` with the actual VPC peering ID. ``` import { to = tidbcloud_dedicated_vpc_peering.example - id = "${id}" + id = "${vpc_peering_id}" } ```