DEV Community

deepanshumarwah
deepanshumarwah

Posted on

S3 input plugin is not reading AWS-KMS (CMK) encrypted bucket

I am running a logstash container with s3 pipeline as per below configuration:

input {
  s3 {
    id => "pipeline_s3_example_bucket_input"
    bucket => "example-bucket"
    region => "ap-southeast-1"
    access_key_id => "#######################"
    secret_access_key => "#######################"
    codec => "json_lines"
    sincedb_path => "/sincedbs/pipeline_s3_example_bucket.sincedb"
    prefix => "folderA"
    add_field => {
      "type" => "example-bucket-logs"
      "host" => "example-bucket"

Top comments (0)