Skip to content

Commit 079ab0d

Browse files
authored
Merge pull request #277 from tigrisdata/copilot/fix-74102481-231e-4583-8c62-196673fee2a0
docs(sdks/s3): fix Fly endpoints to use fly.storage.tigris.dev instead of t3.storage.dev
2 parents 5109d5e + 3daa2e6 commit 079ab0d

File tree

10 files changed

+29
-16
lines changed

10 files changed

+29
-16
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
FROM mcr.microsoft.com/devcontainers/base:bookworm
22

33
VOLUME /workspace/tigris-os-docs/node_modules
4-
VOLUME /workspace/tigris-os-docs/.docusaurus
4+
VOLUME /workspace/tigris-os-docs/.docusaurus
5+
6+
RUN apt-get update && apt-get install -y ffmpeg

docs/sdks/s3/aws-cli.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ by updating your endpoint URL configuration:
1212
- IAM requests must be directed to `https://iam.storage.dev`
1313
- S3 requests made from outside Fly should be directed to
1414
`https://t3.storage.dev`
15-
- S3 requests made from within Fly must be directed to `https://t3.storage.dev`
15+
- S3 requests made from within Fly must be directed to
16+
`https://fly.storage.tigris.dev`
1617

1718
When using the AWS CLI, this service endpoint is set by default based on the
1819
region and is not configured by the user directly. AWS S3 recommends using
@@ -36,7 +37,7 @@ Default output format [None]: json
3637

3738
You can then use the AWS CLI as you normally would, but with the
3839
`--endpoint-url` flag set to `https://t3.storage.dev` or
39-
`https://t3.storage.dev`:
40+
`https://fly.storage.tigris.dev`:
4041

4142
```bash
4243
aws s3api list-buckets --endpoint-url https://t3.storage.dev

docs/sdks/s3/aws-elixir-sdk.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ available.
99
You may continue to use the ExAWS SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
1314

1415
This example reads the credentials from the environment variables
1516
`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`.

docs/sdks/s3/aws-go-sdk.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ available.
99
You may continue to use the AWS Go SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
1314

1415
This example uses the [AWS Go SDK v2](https://github.com/aws/aws-sdk-go-v2) and
1516
reads the default credentials file or the environment variables

docs/sdks/s3/aws-java-sdk.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ available.
77
You may continue to use the AWS Java SDK as you normally would, but with the
88
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
99
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
10-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
10+
within Fly, use the endpoint
11+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
1112

1213
This example uses the [AWS Java SDK v2](https://github.com/aws/aws-sdk-java-v2)
1314

docs/sdks/s3/aws-js-sdk.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ available.
99
You may continue to use the AWS JS SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
13-
Also make sure that `s3ForcePathStyle` is set to `false`.
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also make sure
14+
that `s3ForcePathStyle` is set to `false`.
1415

1516
```js
1617
import { S3Client } from "@aws-sdk/client-s3";

docs/sdks/s3/aws-net-sdk.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ available.
99
You may continue to use the AWS .Net SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
1314

1415
This example uses the
1516
[AWS .Net SDK v3](https://www.nuget.org/packages/AWSSDK.S3) and reads the
@@ -28,7 +29,8 @@ dotnet add package AWSSDK.SSOOIDC
2829
Then you can use the SDK as you normally would, but with the endpoint set to
2930
Tigris. If you are using Tigris outside of Fly, use the endpoint
3031
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
31-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
32+
within Fly, use the endpoint
33+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
3234

3335
import gettingStarted from "!!raw-loader!../../../examples/dotnet/GettingStarted.cs";
3436

docs/sdks/s3/aws-php-sdk.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ available.
77
You may continue to use the AWS PHP SDK as you normally would, but with the
88
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
99
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
10-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
10+
within Fly, use the endpoint
11+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
1112

1213
## Getting started
1314

docs/sdks/s3/aws-python-sdk.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ available.
99
You may continue to use the AWS Python SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
13-
Also ensure that the addressing style is set to `virtual`.
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also ensure
14+
that the addressing style is set to `virtual`.
1415

1516
```python
1617
# Create S3 service client

docs/sdks/s3/aws-ruby-sdk.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ available.
99
You may continue to use the AWS Ruby SDK as you normally would, but with the
1010
endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
12-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
13-
Also make sure `force_path_style` is set to false:
12+
within Fly, use the endpoint
13+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also make sure
14+
`force_path_style` is set to false:
1415

1516
```ruby
1617
s3 = Aws::S3::Client.new(
@@ -33,7 +34,8 @@ import Gemfile from "!!raw-loader!../../../examples/ruby/Gemfile";
3334
Then you can use the SDK as you normally would, but with the endpoint set to
3435
Tigris. If you are using Tigris outside of Fly, use the endpoint
3536
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
36-
within Fly, use the endpoint [https://t3.storage.dev](https://t3.storage.dev).
37+
within Fly, use the endpoint
38+
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
3739

3840
import gettingStarted from "!!raw-loader!../../../examples/ruby/getting_started.rb";
3941

0 commit comments

Comments
 (0)