diff --git a/www/content/s3.md b/www/content/s3.md index 5b42b11e8..acf7c63f0 100644 --- a/www/content/s3.md +++ b/www/content/s3.md @@ -21,8 +21,7 @@ use cases. If you need one of such use cases, please open an issue/pull request. s3: # You can have multiple s3 configs - - # Bucket name (without the s3:// prefix) - # You can use `{{ .Env.BUCKET_ID }}` + # Template for the bucket name(without the s3:// prefix) # Default is empty. bucket: my-bucket # AWS Region to use. @@ -58,16 +57,16 @@ Currently it supports authentication with: * A [EnvProvider][EnvProvider] which retrieves credentials from the environment variables of the running process. Environment credentials never expire. Environment variables used: - + * Access Key ID: AWS_ACCESS_KEY_ID or AWS_ACCESS_KEY * Secret Access Key: AWS_SECRET_ACCESS_KEY or AWS_SECRET_KEY - + * A [SharedCredentialsProvider][SharedCredentialsProvider] which retrieves credentials from the current user's home directory, and keeps track if those credentials are expired. - + Profile ini file example: $HOME/.aws/credentials - + * A AssumeRoleTokenProvider with enabled SharedConfigState which uses MFA prompting for token code on stdin. Go to [session doc][session] for more details.