1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

docs: s3 bucket name

This commit is contained in:
Carlos Alexandro Becker 2019-01-24 16:17:39 -02:00
parent b83fdd82ac
commit 33d6d6b3a8
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -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.