From 8ff00934bd7bf1568d18ece822b7ac8441d7097c Mon Sep 17 00:00:00 2001 From: Shawn Sesna Date: Thu, 27 Jul 2023 09:14:32 -0700 Subject: [PATCH] Update gcp-postgresql.tf --- .../gcp-base-infrastructure-terraform/gcp-postgresql.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octopus-samples-instances/gcp-base-infrastructure-terraform/gcp-postgresql.tf b/octopus-samples-instances/gcp-base-infrastructure-terraform/gcp-postgresql.tf index 2310e14..b603035 100644 --- a/octopus-samples-instances/gcp-base-infrastructure-terraform/gcp-postgresql.tf +++ b/octopus-samples-instances/gcp-base-infrastructure-terraform/gcp-postgresql.tf @@ -29,7 +29,7 @@ resource "google_sql_user" "postgres" { resource "time_sleep" "wait" { depends_on = [google_sql_database_instance.postgresql] - create_duration = "20s" + create_duration = "120s" } ########################################################################################