diff --git a/docs/r/compute_shared_vpc_host_project.html.markdown b/docs/r/compute_shared_vpc_host_project.html.markdown index 5b011677b74..cdec57c2cb5 100644 --- a/docs/r/compute_shared_vpc_host_project.html.markdown +++ b/docs/r/compute_shared_vpc_host_project.html.markdown @@ -42,3 +42,10 @@ The following arguments are expected: * `project` - (Required) The ID of the project that will serve as a Shared VPC host project +## Import + +Google Compute Engine Shared VPC host project feature can be imported using the `project`, e.g. + +``` +$ terraform import google_compute_shared_vpc_host_project.host host-project-id +``` diff --git a/docs/r/compute_shared_vpc_service_project.html.markdown b/docs/r/compute_shared_vpc_service_project.html.markdown index 76dcd42beac..6744f3dd9b0 100644 --- a/docs/r/compute_shared_vpc_service_project.html.markdown +++ b/docs/r/compute_shared_vpc_service_project.html.markdown @@ -36,3 +36,11 @@ The following arguments are expected: * `host_project` - (Required) The ID of a host project to associate. * `service_project` - (Required) The ID of the project that will serve as a Shared VPC service project. + +## Import + +Google Compute Engine Shared VPC service project feature can be imported using the `host_project` and `service_project`, e.g. + +``` +$ terraform import google_compute_shared_vpc_service_project.service1 host-project-id/service-project-id-1 +```