From b598e84af750c67e50ec15c4b216d80cca472352 Mon Sep 17 00:00:00 2001 From: Lyudmil Pelov Date: Wed, 11 Aug 2021 16:35:34 +0200 Subject: [PATCH] - reduce the sleep time to 15s --- ods.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ods.tf b/ods.tf index 73c73df..c7d48b8 100644 --- a/ods.tf +++ b/ods.tf @@ -6,9 +6,9 @@ # ODS Project #************************************* -resource "time_sleep" "wait_30_seconds" { +resource "time_sleep" "wait_15_seconds" { depends_on = [oci_core_subnet.ods-private-subnet] - create_duration = "60s" + create_duration = "15s" } @@ -45,6 +45,6 @@ resource "oci_datascience_notebook_session" "ods-notebook-session" { depends_on = [ oci_identity_policy.ods-policy, oci_identity_policy.ods-root-policy, - time_sleep.wait_30_seconds + time_sleep.wait_15_seconds ] }