I keep getting an error that relative path has been specified
Any ideas?
input {
s3 {
id => 'main'
access_key_id => ''
secret_access_key => '/O'
bucket => 'sales-data'
region => 'us-east-1'
prefix => '/'
type => 's3'
additional_settings => {
force_path_style => true
follow_redirects => false
}
}
file {
path => 'https://s3.amazonaws.com/sales-data/sales/SfileName0.csv'
start_position => 'beginning'
sincedb_path => 'NUL'
}
}
filter {
csv {
separator => ","
columns => ["Type"]
}
}
output {
elasticsearch {
hosts => ""
user => ""
password => ""
index => "data"
}
stdout {}
}