File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ module "tf_source" {
131131 }
132132
133133 # Remove after github.com/terraform-google-modules/terraform-google-bootstrap/issues/160
134- depends_on = [time_sleep . wait_organization_policies ]
134+ depends_on = [module . seed_bootstrap , time_sleep . wait_organization_policies ]
135135}
136136
137137module "tf_private_pool" {
Original file line number Diff line number Diff line change @@ -77,13 +77,6 @@ resource "google_service_networking_connection" "worker_pool_conn" {
7777 reserved_peering_ranges = [google_compute_global_address . worker_pool_range [0 ]. name ]
7878}
7979
80- resource "time_sleep" "wait_worker_pool_conn" {
81- create_duration = " 30s"
82- depends_on = [
83- google_service_networking_connection . worker_pool_conn
84- ]
85- }
86-
8780resource "google_compute_network_peering_routes_config" "peering_routes" {
8881 count = var. private_worker_pool . enable_network_peering ? 1 : 0
8982
@@ -93,8 +86,6 @@ resource "google_compute_network_peering_routes_config" "peering_routes" {
9386
9487 import_custom_routes = true
9588 export_custom_routes = true
96-
97- depends_on = [time_sleep . wait_worker_pool_conn ]
9889}
9990
10091module "firewall_rules" {
You can’t perform that action at this time.
0 commit comments