I need a piece of "cloud glue" to read messages from an AWS SQS queue and push the results into an Azure Service Bus. I like Azure Logic Apps but they do not have an SQS connector. I could hand roll the code in an Azure functions, but are there any prebuilt solutions to consume SQS in the Azure world?
Azure Function can't be triggered by SQS either, unless you want to do timer + polling.
The easiest I can come up with is AWS Lambda + SQS trigger + Service Bus SDK to send the message.