From 696cb505694601bf7777cfb524061f25834a07c1 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:38:51 +0200 Subject: [PATCH] Clarify Boto3 credential chain (#706) --- docs/configs/clearml_conf.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configs/clearml_conf.md b/docs/configs/clearml_conf.md index 4a0e6150..debe06bf 100644 --- a/docs/configs/clearml_conf.md +++ b/docs/configs/clearml_conf.md @@ -833,9 +833,9 @@ metrics, network, AWS S3 buckets and credentials, Google Cloud Storage, Azure St **`sdk.aws.s3.use_credentials_chain`** (*bool*) -* Instead of using default credentials for an unspecified bucket, enable credentials chain to let Boto3 pick the right - credentials. This includes picking credentials from environment variables, - a credential file, and metadata service with an IAM role configured. See [Boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html#configuring-credentials) +* Set to `true` to let Boto3 look for and pick the right credentials, instead of using the explicitly provided + default credentials (`sdk.aws.s3.secret` and `sdk.aws.s3.key`). Boto3 looks for credentials in environment variables, + a credential file, and metadata service with an IAM role configured. See [Boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html#configuring-credentials).