terraform-provider-google/website/docs/r/compute_shared_vpc_host_project.html.markdown
Martin Atkins 182f87835b website: revised documentation for Compute Shared VPC resources (#725)
The documentation pages for these two resources were previously a little
muddled, with the argument references swapped and a non-working example
for the host project.
2017-11-13 12:48:18 -08:00

1.5 KiB

layout page_title sidebar_current description
google Google: google_compute_shared_vpc_host_project docs-google-compute-shared-vpc-host-project Enables the Google Compute Engine Shared VPC feature for a project, assigning it as a host project.

google_compute_shared_vpc_host_project

Enables the Google Compute Engine Shared VPC feature for a project, assigning it as a Shared VPC host project.

For more information, see, the Project API documentation, where the Shared VPC feature is referred to by its former name "XPN".

Example Usage

# A host project provides network resources to associated service projects.
resource "google_compute_shared_vpc_host_project" "host" {
  project = "host-project-id"
}

# A service project gains access to network resources provided by its
# associated host project.
resource "google_compute_shared_vpc_service_project" "service1" {
  host_project    = "${google_compute_shared_vpc_host_project.host.project}"
  service_project = "service-project-id-1"
}
resource "google_compute_shared_vpc_service_project" "service2" {
  host_project    = "${google_compute_shared_vpc_host_project.host.project}"
  service_project = "service-project-id-2"
}

Argument Reference

The following arguments are expected:

  • project - (Required) The ID of the project that will serve as a Shared VPC host project