-
Notifications
You must be signed in to change notification settings - Fork 937
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
84 changes: 84 additions & 0 deletions
84
eventbridge-pipes-ddbstream-sfn-terraform/eventbridge-pipes-ddbstream-sfn-terraform.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} | ||
} |