logstash-plugins / logstash-output-s3

Apache License 2.0
58 stars 151 forks source link

Feat: cast true/false values for additional_settings #241

Closed kares closed 3 years ago

kares commented 3 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: could be extended to cast Float/Integer but for now we're mostly after ssl_verify_peer => false ...