Skip to content

Commit 3e2a92f

Browse files
committed
Add artificial dependency to overcome internal error until the underlying bug is fixed
1 parent 6dd5626 commit 3e2a92f

File tree

1 file changed

+10
-0
lines changed
  • modules/network-connectivity-center

1 file changed

+10
-0
lines changed

modules/network-connectivity-center/main.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ resource "google_network_connectivity_spoke" "hybrid_spoke" {
7878
site_to_site_data_transfer = each.value.site_to_site_data_transfer
7979
}
8080
}
81+
82+
# TODO: gleichda remove once b/369823133 is fixed
83+
depends_on = [
84+
google_network_connectivity_spoke.vpc_spoke
85+
]
8186
}
8287

8388
resource "google_network_connectivity_spoke" "router_appliance_spoke" {
@@ -101,4 +106,9 @@ resource "google_network_connectivity_spoke" "router_appliance_spoke" {
101106
site_to_site_data_transfer = each.value.site_to_site_data_transfer
102107

103108
}
109+
110+
# TODO: gleichda remove once b/369823133 is fixed
111+
depends_on = [
112+
google_network_connectivity_spoke.hybrid_spoke
113+
]
104114
}

0 commit comments

Comments
 (0)