package
5.64.0+incompatible
Repository: https://github.com/hashicorp/terraform-provider-aws.git
Documentation: pkg.go.dev

# README

Retry Package

The start of musings on a replacement for the Terraform Plugin SDK v2 helper/retry package.

Example Usage

for r := retry.Begin(); r.Continue(ctx); {
    if doSomething() {
        break
    }
}