Skip to content

Commit 1cfc55e

Browse files
suppress IT_PRIVATE from response to DEDICATED diff (#11176) (#746)
[upstream:d0018758260c7cc017d92e43804f02ba5724a89b] Signed-off-by: Modular Magician <[email protected]>
1 parent 9a0ba91 commit 1cfc55e

File tree

2 files changed

+2
-2
lines changed
  • compute_interconnect_basic_test
  • interconnect_attachment_dedicated

2 files changed

+2
-2
lines changed

compute_interconnect_basic_test/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ data "google_project" "project" {}
33
resource "google_compute_interconnect" "example-interconnect" {
44
name = "example-interconnect-${local.name_suffix}"
55
customer_name = "internal_customer" # Special customer only available for Google testing.
6-
interconnect_type = "IT_PRIVATE" # Special type only available for Google testing.
6+
interconnect_type = "DEDICATED"
77
link_type = "LINK_TYPE_ETHERNET_10G_LR"
88
location = "https://www.googleapis.com/compute/v1/projects/${data.google_project.project.name}/global/interconnectLocations/z2z-us-east4-zone1-lciadl-a" # Special location only available for Google testing.
99
requested_link_count = 1

interconnect_attachment_dedicated/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ data "google_project" "project" {}
33
resource "google_compute_interconnect" "foobar" {
44
name = "interconenct-1-${local.name_suffix}"
55
customer_name = "internal_customer" # Special customer only available for Google testing.
6-
interconnect_type = "IT_PRIVATE" # Special type only available for Google testing.
6+
interconnect_type = "DEDICATED"
77
link_type = "LINK_TYPE_ETHERNET_10G_LR"
88
requested_link_count = 1
99
location = "https://www.googleapis.com/compute/v1/projects/${data.google_project.project.name}/global/interconnectLocations/z2z-us-east4-zone1-lciadl-a" # Special location only available for Google testing.

0 commit comments

Comments
 (0)