ic

Cloud Interconnect

NetworkingGCP
General

General information about the service.

Description

Google Cloud Interconnect extends your on-premises network to Google Cloud through a highly available, low-latency connection.

Service ID

compute.googleapis.com

Resource Pattern

projects/{project}/global/interconnects/{interconnect}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

ic-{location}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_compute_interconnect_attachment" "main" {
2 name = "ic-${var.environment}"
3 interconnect = var.interconnect
4 router = google_compute_router.main.id
5 type = "DEDICATED"
6 bandwidth = "BPS_1G"
7}
Utilities

Utilities to support app deployment or configuration.