Logstash-plugins: logstash-input-sqs

Hello, I'm trying to use sqs plugin to pull messages from AWS sqs queue. My config is as follows
input {
sqs {
access_key_id => 'xxxxxxxxx'
secret_access_key => 'xxxxxxx'
queue => "queue-name"
region => "us-west-1"
}
}
I'm getting "The specified queue doesn't exist or you do not have access to it" error. I verified with the service provider who gave the queue information and it is good. The queue URL has an account number in it. sqs input plugin config options doesn't have a key to specify account number. Is it not required or is there a way to provide that? I'm suspecting not having account number is causing the access error.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.