Skip to content

Commit

Permalink
fix: increase the sleep time as a workaround for IBM-Cloud/terraform-…
Browse files Browse the repository at this point in the history
  • Loading branch information
jor2 authored Oct 8, 2024
1 parent 0d019cc commit afee52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solutions/instances/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@ data "ibm_en_destinations" "en_destinations" {
instance_guid = local.existing_en_guid
}

# workaround for https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5533
# workaround for https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5533.
resource "time_sleep" "wait_for_scc" {
depends_on = [module.scc]

create_duration = "30s"
create_duration = "60s"
}

resource "ibm_en_topic" "en_topic" {
Expand Down

0 comments on commit afee52c

Please sign in to comment.