Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary wait between two triggers creation #55

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions containers/terraform-triggers/triggers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,10 @@ resource "scaleway_container_trigger" "public" {
}
}

# There is a small bug today when multiple triggers are created at the same time
# We'll wait 10 seconds before creating other triggers
resource "time_sleep" "wait_10_seconds_after_public_trigger_creation" {
depends_on = [scaleway_container_trigger.public]

create_duration = "10s"
}

resource "scaleway_container_trigger" "private" {
container_id = scaleway_container.private.id
name = "private-trigger"
sqs {
queue = scaleway_mnq_sqs_queue.private.name
}

depends_on = [time_sleep.wait_10_seconds_after_public_trigger_creation]
}
Loading