ibmdcb
(Ibmdcb)
May 11, 2020, 8:58pm
1
logstash s3 output doesn't support path-style url for s3 compatible storage.
It tries to connect to "< bucket>.< endpoint>"... instead of "< endpoint>/< bucket>".
Our internal s3 implementation currently only supports the path style, would be nice if logstash provides a switch to use path style.
Such as a shame that we are so close, yet so far! Blocked by such a small thing before logs can reach s3.
Hello @ibmdcb
You can pass additional configuration to the client.
See the documentation .
In particular:
input {
s3 {
"access_key_id" => "1234"
"secret_access_key" => "secret"
"bucket" => "logstash-test"
"additional_settings" => {
"force_path_style" => true
}
}
}
ibmdcb
(Ibmdcb)
May 12, 2020, 6:38pm
3
Thank you so much! Exactly what I needed. Tested and all works.
1 Like
system
(system)
Closed
June 9, 2020, 6:39pm
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.