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

s3blob/blob: support additional endpoint query parameters #3486

Merged
merged 1 commit into from
Sep 11, 2024

Commits on Sep 11, 2024

  1. s3blob/blob: support additional endpoint query parameters

    This commit adds the following query parameters for AWS:
    
    1. `dualstack`
    2. `fips`
    3. `accelerate` (S3-only)
    
    This avoids the need for users to specify `endpoint`. For example, if
    my AWS S3 bucket is `my-bucket` in `us-east-1`, and you want to enable
    transfer acceleration, dual-stack support, and/or FIPS, you would need
    to configure `endpoint` with one of the following:
    
    1. `my-bucket.s3-accelerate.amazonaws.com`
    2. `my-bucket.s3-accelerate.dualstack.amazonaws.com`
    3. `my-bucket.s3-fips.us-gov-east-1.amazonaws.com`
    4. `my-bucket.s3-fips.dualstack.us-east-1.amazonaws.com`
    
    For example, for the last option, users can use
    `s3://my-bucket?fips=true&dualstack=true`.
    
    Closes google#3484
    stanhu committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    602e83e View commit details
    Browse the repository at this point in the history