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

awsutil: add GetCallerIdentity to Create/Rotate #10

Merged
merged 3 commits into from
Sep 20, 2021

Commits on Sep 17, 2021

  1. awsutil: add GetCallerIdentity to Create/Rotate

    This adds GetCallerIdentity to CreateAccessKey and RotateKeys. The
    latter is done simply by passing WithTimeout through to the inner
    CreateAccessKey on Rotate. As such, both paths are conditional on a
    non-zero WithTimeout option being given - this is to ensure that we
    don't try to immediately verify, which is likely to always fail.
    vancluever committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    84b6817 View commit details
    Browse the repository at this point in the history
  2. awsutil: add some comments, remove exponential backoff

    This does the following:
    
    * Adds some comments for WithTimeout to RotateKeys and CreateAccessKey
      to explain exactly what these options do.
    
    * Removes the exponential backoff. Even with the quadratic-time backoff
      we're still probably looking at a number of seconds of delay that's
      probably unnecessary. Retrying every 1s should not generate that much
      traffic and only need to be necessary for a few retries.
    vancluever committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    6710b5b View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

  1. Configuration menu
    Copy the full SHA
    a6b8d4b View commit details
    Browse the repository at this point in the history