Adding info about S3 access parameters

This commit is contained in:
Jeff Anderson 2021-02-16 16:47:20 -05:00 committed by Alexander Klizhentas
parent b168df52ce
commit 2db04fe1d0

View file

@ -1504,6 +1504,15 @@ teleport:
The AWS authentication settings above can be omitted if the machine itself is
running on an EC2 instance with an IAM role.
These optional get paramaters control how teleport interacts with an S3 endpoint, including S3 compatible endpoints.
`s3://bucket/path?region=us-east-1&endpoint=mys3.example.com&insecure=false&disablesse=false`
* region=us-east-1 - set the amazon region to use.
* endpoint=mys3.example.com - connect to a custom s3 endpoint.
* insecure=true - set to true or false. Dont use TLS if true.
* disablesse=true - set to true or false Disable S3 Server-Side Encryption if true. If false, aws:kms (Key Management Service) will be used for server-side encryption. Other SSE types are not supported at this time.
### Using DynamoDB
!!! tip "Tip"