logstash-plugins / logstash-input-s3

Apache License 2.0
57 stars 150 forks source link

Feat: cast true/false values for additional_settings #232

Closed kares closed 2 years ago

kares commented 2 years ago

This allows us to properly set additional AWS settings e.g.

output {
  s3 {
    ...
    additional_settings => {
      force_path_style => true
      ssl_verify_peer => false
    }
  }
}

NOTE: we did the same in S3 output: https://github.com/logstash-plugins/logstash-output-s3/pull/241