We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f00ad commit 38c4dfdCopy full SHA for 38c4dfd
vector-configs/sinks/aws_s3.toml
@@ -2,11 +2,12 @@
2
# General
3
type = "aws_s3"
4
inputs = ["log_json"]
5
- bucket = "${AWS_BUCKET}"
+ bucket = "${AWS_BUCKET:-$BUCKET_NAME}"
6
compression = "gzip"
7
- region = "${AWS_REGION}"
+ region = "${AWS_REGION:-auto}"
8
framing.method = "newline_delimited"
9
encoding.codec = "json"
10
key_prefix = "{{fly.app.name}}/%F/" # optional, default
11
healthcheck.enabled = true # optional, default
12
- ${S3_ENDPOINT+endpoint = "$S3_ENDPOINT"}
+ ${S3_ENDPOINT+endpoint = "\"$S3_ENDPOINT"\"}
13
+ ${AWS_ENDPOINT_URL_S3+endpoint = "\"$AWS_ENDPOINT_URL_S3"\"}
0 commit comments