Has anyone successfully integrated Netflix Conductor with AWS SQS? I have tried below steps but the workflow is not triggered.
- Create SQS queue
- Added AWS creds to environment
- Registered tasks, workflows and the event listener below
{
"name": "sqs_event_listener",
"event": "sqs:name_of_sqs_queue",
"condition": "true",
"active": true,
"actions": [{
"action": "start_workflow",
"start_workflow": {
"name": "mywf"
}
}]
}