fix(ft): give more failproof example in README

Without that `ssl` defaults to being disabled, and interacting
with AWS S3 with such configuration consistently times out.
This commit is contained in:
Andrew Mayorov 2023-06-14 12:46:16 +03:00
parent 5fdf73bc03
commit 1beb588207
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
1 changed files with 4 additions and 1 deletions

View File

@ -56,10 +56,13 @@ file_transfer {
s3 {
enable = true
host = "s3.us-east-1.amazonaws.com"
port = "443"
port = 443
access_key_id = "AKIA27EZDDM9XLINWXFE"
secret_access_key = "..."
bucket = "my-bucket"
transport_options = {
ssl { enable = true }
}
}
}
}