From 83b77f01430b47428bf33a8f10b1cc87eed5b7d4 Mon Sep 17 00:00:00 2001 From: ellisms <114107920+ellisms@users.noreply.github.com> Date: Mon, 21 Oct 2024 09:39:47 -0400 Subject: [PATCH] publishing file --- ...tbridge-pipes-ddbstream-sfn-terraform.json | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 eventbridge-pipes-ddbstream-sfn-terraform/eventbridge-pipes-ddbstream-sfn-terraform.json diff --git a/eventbridge-pipes-ddbstream-sfn-terraform/eventbridge-pipes-ddbstream-sfn-terraform.json b/eventbridge-pipes-ddbstream-sfn-terraform/eventbridge-pipes-ddbstream-sfn-terraform.json new file mode 100644 index 000000000..a494c3ec5 --- /dev/null +++ b/eventbridge-pipes-ddbstream-sfn-terraform/eventbridge-pipes-ddbstream-sfn-terraform.json @@ -0,0 +1,84 @@ +{ + "title": "Amazon DynamoDB Stream to AWS Step Functions", + "description": "Invoke AWS Step Functions workflow from a Amazon DynamoDB stream message", + "language": "YAML", + "level": "200", + "framework": "Terraform", + "introBox": { + "headline": "Invoke a Step Functions workflow from a DynamoDB stream", + "text": [ + "This sample project demonstrates how to invoke an AWS Step Functions state machine directly from a DynamoDB Stream using Amazon EventBridge Pipes.", + "This pattern deploys one Step Function, one DynamoDB with stream enabled, and one Amazon EventBridge Pipe." + ] + }, + "gitHub": { + "template": { + "repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/eventbridge-pipes-ddbstream-sfn-terraform", + "templateURL": "serverless-patterns/eventbridge-pipes-ddbstream-sfn-terraform", + "projectFolder": "eventbridge-pipes-ddbstream-sfn-terraform", + "templateFile": "main.tf" + } + }, + "resources": { + "bullets": [ + { + "text": "Amazon EventBridge Pipes - connects sources to targets.", + "link": "https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html" + } + ] + }, + "deploy": { + "text": [ + "terraform init", + "terraform apply" + ] + }, + "testing": { + "text": [ + "See the GitHub repo for detailed testing instructions." + ] + }, + "cleanup": { + "text": [ + "terraform destroy" + ] + }, + "authors": [ + { + "name": "Oriol Matavacas", + "image": "https://togithub.s3.eu-west-1.amazonaws.com/Oriol.jpg", + "bio": "Oriol Matavacas is a Sr. Solutions Architect at AWS based in Barcelona. Oriol primarily supporting customers on the journey to the Cloud. He enjoys building new solutions with scalability, availability and easy to maintain by using serverless.", + "linkedin": "oriol-matavacas-rodriguez-b165868a", + "twitter": "" + } + ], + "patternArch": { + "icon1": { + "x": 20, + "y": 50, + "service": "dynamodb", + "label": "Amazon DynamoDB" + }, + "icon2": { + "x": 50, + "y": 50, + "service": "eventbridge-pipes", + "label": "Amazon EventBridge Pipes" + }, + "icon3": { + "x": 80, + "y": 50, + "service": "sfn", + "label": "AWS Step Functions" + }, + "line1": { + "from": "icon1", + "to": "icon2", + "label": "Stream" + }, + "line2": { + "from": "icon2", + "to": "icon3" + } + } +}