Skip to content

Commit

Permalink
Merge pull request #12 from lyudmil-pelov/master
Browse files Browse the repository at this point in the history
reduce the sleep time
  • Loading branch information
tqumhieh authored Aug 11, 2021
2 parents a08506b + 3e453b3 commit bdaa25a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ods.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}


Expand Down Expand Up @@ -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
]
}

0 comments on commit bdaa25a

Please sign in to comment.