Skip to content

Commit ae6b509

Browse files
committed
fix: timer dependency
1 parent ad9ff5b commit ae6b509

File tree

1 file changed

+2
-2
lines changed
  • released/usecases/trial_integration_suite/04_setup_oauth_clients

1 file changed

+2
-2
lines changed

released/usecases/trial_integration_suite/04_setup_oauth_clients/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ resource "time_sleep" "wait_30_seconds" {
8282
data "cloudfoundry_service_plans" "integration_flow" {
8383
name = local.it_if_plan
8484
service_offering_name = local.it_service
85-
depends_on = [wait_30_seconds]
85+
depends_on = [time_sleep.wait_30_seconds]
8686
}
8787

8888
resource "cloudfoundry_service_instance" "integration_flow" {
@@ -113,7 +113,7 @@ resource "cloudfoundry_service_credential_binding" "integration_flow_binding" {
113113
data "cloudfoundry_service_plans" "it_api" {
114114
name = local.it_api_plan
115115
service_offering_name = local.it_service
116-
//depends_on = [wait_30_seconds]
116+
depends_on = [time_sleep.wait_30_seconds]
117117
}
118118

119119
resource "cloudfoundry_service_instance" "it_api" {

0 commit comments

Comments
 (0)