File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -51,3 +51,11 @@ resource "time_sleep" "cloud_run_v2_service" {
51
51
52
52
create_duration = " 45s"
53
53
}
54
+
55
+ resource "time_sleep" "load_balancer_warm_up_time" {
56
+ depends_on = [
57
+ google_compute_global_forwarding_rule . http
58
+ ]
59
+
60
+ create_duration = " 370s"
61
+ }
Original file line number Diff line number Diff line change @@ -287,6 +287,7 @@ resource "google_firestore_database" "database" {
287
287
concurrency_mode = " PESSIMISTIC"
288
288
app_engine_integration_mode = " DISABLED"
289
289
depends_on = [
290
- time_sleep . project_services
290
+ time_sleep . project_services ,
291
+ time_sleep . load_balancer_warm_up_time
291
292
]
292
293
}
Original file line number Diff line number Diff line change 16
16
17
17
output "frontend_url" {
18
18
description = " IP address to site. Load balancer expected to take ~5 minutes for it to warm up."
19
- value = " http://${ google_compute_global_address . default . address } / (Wait ~5 minutes for it to warm up.) "
19
+ value = " http://${ google_compute_global_address . default . address } /"
20
20
}
21
21
22
22
output "neos_toc_url" {
You can’t perform that action at this time.
0 commit comments