Example for an SQS event with https://www.localstack.cloud/ #2995
-
I would love to get any pointers to how I can setup an Argo event listening to an (aws) SQS queue. Now this queue is not actually in AWS, but instead emulated using https://www.localstack.cloud/. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can specify both For example:
In my case, I have localstack running in a k3d cluster so I have the following endpoint value: IIRC, if you're running localstack outside of k8s, your endpoint would probably be just |
Beta Was this translation helpful? Give feedback.
You can specify both
endpoint
andqueue
together in yourEventSource
to accomplish this.For example:
In my case, I have localstack running in a k3d cluster so I have the following endpoint value:
localstack.default.svc.cluster.local:4566
.IIRC, if you're running locals…