RSS -> AWS SQS
@dylburger
code:
data:privatelast updated:4 years ago
@dylburger/
RSS -> AWS SQS
  1. Copy this workflow and select the event source tied to your RSS feed. This will run the workflow every time a new item appears in the feed.
  2. Create an IAM user and attach an IAM policy of the following format:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": "sqs:SendMessage",
            "Resource": "[your-sqs-queue-arn]"
        }
    ]
}

This assumes you have an SQS queue created where you'd like events delivered. If not, go ahead an create one now.

  1. Click the Connect Account button in send_message_to_sqs step, saving your AWS access and secret keys from Step 2 above.
  2. Add the SQS queue URL as the value of the SQS Queue URL param.
  3. Deploy the workflow. Every time a new item shows up in your RSS feed, this workflow will send it to your SQS queue.