Skip to content

Commit

Permalink
publishing file
Browse files Browse the repository at this point in the history
  • Loading branch information
ellisms authored Oct 21, 2024
1 parent 526d623 commit 83b77f0
Showing 1 changed file with 84 additions and 0 deletions.
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"
}
}
}

0 comments on commit 83b77f0

Please sign in to comment.