Skip to content

Commit b28eba1

Browse files
committed
fix(sdks/s3): refer to t3.storage.dev instead of the old endpoint
Signed-off-by: Xe Iaso <[email protected]>
1 parent 4438359 commit b28eba1

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

docs/sdks/s3/aws-cli.md

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

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

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

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
13+
[https://t3.storage.dev](https://t3.storage.dev).
1414

1515
This example reads the credentials from the environment variables
1616
`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`.
@@ -48,7 +48,7 @@ secret_access_key. In this case we use AWS_ACCESS_KEY_ID and
4848
AWS_SECRET_ACCESS_KEY environment variables to store the access keys we will use
4949
to access Tigris.
5050

51-
Then we configure the S3 API endpoint, which is "fly.storage.tigris.dev".
51+
Then we configure the S3 API endpoint, which is "t3.storage.dev".
5252

5353
### Runtime configuration
5454

@@ -69,7 +69,7 @@ if config_env() == :prod do
6969

7070
config :ex_aws, :s3,
7171
scheme: "https://",
72-
host: "fly.storage.tigris.dev",
72+
host: "t3.storage.dev",
7373
region: "auto"
7474

7575
end
@@ -96,6 +96,6 @@ You can also use a
9696
by replacing the Tigris domain name with your custom domain name:
9797

9898
```elixir
99-
branded_url = String.replace(presigned_url, "fly.storage.tigris.dev", "your-domain.example.com")
99+
branded_url = String.replace(presigned_url, "t3.storage.dev", "your-domain.example.com")
100100
IO.puts("Presigned URL for GET (custom domain): #{branded_url}")
101101
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
13+
[https://t3.storage.dev](https://t3.storage.dev).
1414

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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
1010
within Fly, use the endpoint
11-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
11+
[https://t3.storage.dev](https://t3.storage.dev).
1212

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also make sure
13+
[https://t3.storage.dev](https://t3.storage.dev). Also make sure
1414
that `s3ForcePathStyle` is set to `false`.
1515

1616
```js

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
13+
[https://t3.storage.dev](https://t3.storage.dev).
1414

1515
This example uses the
1616
[AWS .Net SDK v3](https://www.nuget.org/packages/AWSSDK.S3) and reads the
@@ -30,7 +30,7 @@ Then you can use the SDK as you normally would, but with the endpoint set to
3030
Tigris. If you are using Tigris outside of Fly, use the endpoint
3131
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
3232
within Fly, use the endpoint
33-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
33+
[https://t3.storage.dev](https://t3.storage.dev).
3434

3535
import gettingStarted from "!!raw-loader!../../../examples/dotnet/GettingStarted.cs";
3636

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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
1010
within Fly, use the endpoint
11-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
11+
[https://t3.storage.dev](https://t3.storage.dev).
1212

1313
## Getting started
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also ensure
13+
[https://t3.storage.dev](https://t3.storage.dev). Also ensure
1414
that the addressing style is set to `virtual`.
1515

1616
```python

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
1212
within Fly, use the endpoint
13-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev). Also make sure
13+
[https://t3.storage.dev](https://t3.storage.dev). Also make sure
1414
`force_path_style` is set to false:
1515

1616
```ruby
@@ -35,7 +35,7 @@ Then you can use the SDK as you normally would, but with the endpoint set to
3535
Tigris. If you are using Tigris outside of Fly, use the endpoint
3636
[https://t3.storage.dev](https://t3.storage.dev). If you are using Tigris from
3737
within Fly, use the endpoint
38-
[https://fly.storage.tigris.dev](https://fly.storage.tigris.dev).
38+
[https://t3.storage.dev](https://t3.storage.dev).
3939

4040
import gettingStarted from "!!raw-loader!../../../examples/ruby/getting_started.rb";
4141

0 commit comments

Comments
 (0)