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

docs(alibaba-oss:storage): add important context for aliyun oss configuration regarding tls #29305

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions website/content/docs/configuration/storage/alicloudoss.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ an [Alicloud OSS][alicloudoss] bucket.
storage "alicloudoss" {
access_key = "abcd1234"
secret_key = "defg5678"
endpoint = "oss-us-west-1.aliyuncs.com"
endpoint = "https://oss-us-west-1.aliyuncs.com"
bucket = "my-bucket"
}
```
Expand All @@ -33,7 +33,10 @@ storage "alicloudoss" {
can also be provided via the environment variable `ALICLOUD_OSS_BUCKET`.

- `endpoint` `(string: "")` – Specifies the OSS endpoint. This can also be
provided via the environment variable `ALICLOUD_OSS_ENDPOINT`.
provided via the environment variable `ALICLOUD_OSS_ENDPOINT`. By default, the
Aliyun SDK uses HTTP for endpoint schemas. **You use the `https://` prefix to
ensure encrypted communication**.


The following settings are used for authenticating to Alicloud.

Expand All @@ -56,7 +59,7 @@ This example shows using Alicloud OSS as a storage backend.
storage "alicloudoss" {
access_key = "abcd1234"
secret_key = "defg5678"
endpoint = "oss-us-west-1.aliyuncs.com"
endpoint = "https://oss-us-west-1.aliyuncs.com"
bucket = "my-bucket"
}
```
Expand Down
Loading