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.comResource Pattern
projects/{project}/global/interconnects/{interconnect}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_compute_interconnect_attachment" "main" {2 name = "ic-${var.environment}"3 interconnect = var.interconnect4 router = google_compute_router.main.id5 type = "DEDICATED"6 bandwidth = "BPS_1G"7}
Utilities
Utilities to support app deployment or configuration.