roribio/alpine-sqs

about init queue

jhaoheng opened this issue · 0 comments

  1. I update the sqs-insight.conf, and run it with docker (the conf at the below)
  2. I use aws cli to list the queue, and only the default queue
aws --endpoint-url http://192.168.1.104:9324 sqs list-queues
{
    "QueueUrls": [
        "http://192.168.1.104:9324/queue/default"
    ]
}
  1. But I could see the queue tube on the http://localhost:9325 ...

sqs-insight.conf

{
    "port": 9325,
    "rememberMessages": 100,

    "endpoints": [
        {
           "key": "notValidKey",
           "secretKey": "notValidSecret",
            "region": "us-east-1",
            "url": "http://localhost:9324/queue/newqueue"
        }
    ],

    "dynamicEndpoints": [
        {
           "key": "notValidKey",
           "secretKey": "notValidSecret",
           "region": "us-east-1",
           "url": "http://localhost:9324",
           "visibility": 0
        }
    ]
}