Skip to content

Commit c0d75fc

Browse files
authored
publishing file
1 parent 144e018 commit c0d75fc

1 file changed

Lines changed: 96 additions & 0 deletions

File tree

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
{
2+
"title": "Function chaining with AWS Lambda durable functions in Terraform",
3+
"description": "A durable orchestrator that chains three Lambda functions in sequence to demonstrate AWS Lambda durable functions",
4+
"language": "Python",
5+
"level": "300",
6+
"framework": "Terraform",
7+
"introBox": {
8+
"headline": "How it works",
9+
"text": [
10+
"A durable orchestrator invokes three Lambda functions in sequence, passing each step's output as input to the next. The durable framework checkpoints after every `context.invoke()` call and if the orchestrator fails, it replays from the beginning but skips completed steps using stored results, ensuring no work is repeated."
11+
]
12+
},
13+
"gitHub": {
14+
"template": {
15+
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/lambda-durable-function-chaining-terraform",
16+
"templateURL": "serverless-patterns/lambda-durable-function-chaining-terraform",
17+
"projectFolder": "lambda-durable-function-chaining-terraform",
18+
"templateFile": "main.tf"
19+
}
20+
},
21+
"resources": {
22+
"bullets": [
23+
{
24+
"text": "Lambda durable functions",
25+
"link": "https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html"
26+
},
27+
{
28+
"text": "Build multi-step applications and AI workflows with AWS Lambda durable functions",
29+
"link": "https://aws.amazon.com/blogs/aws/build-multi-step-applications-and-ai-workflows-with-aws-lambda-durable-functions/"
30+
}
31+
]
32+
},
33+
"deploy": {
34+
"text": [
35+
"terraform init",
36+
"terraform apply"
37+
]
38+
},
39+
"testing": {
40+
"text": [
41+
"See the GitHub repo for detailed testing instructions."
42+
]
43+
},
44+
"cleanup": {
45+
"text": [
46+
"terraform destroy",
47+
"terraform show"
48+
]
49+
},
50+
"authors": [
51+
{
52+
"name": "Archana V",
53+
"image": "ttps://media.licdn.com/dms/image/v2/D5603AQGhkVtEhllFEw/profile-displayphoto-shrink_200_200/B56ZZH3LL6H0AY-/0/1744962369852?e=1772668800&v=beta&t=y0t7bsQKJwy5McO395hDmW7QPu_K-a1WKXeTA0-ecno",
54+
"bio": "Solutions Architect at AWS",
55+
"linkedin": "archanavenkat"
56+
}
57+
],
58+
"patternArch": {
59+
"icon1": {
60+
"x": 20,
61+
"y": 50,
62+
"service": "lambda",
63+
"label": "AWS Lambda durable function"
64+
},
65+
"icon2": {
66+
"x": 50,
67+
"y": 20,
68+
"service": "lambda",
69+
"label": "AWS Lambda"
70+
},
71+
"icon3": {
72+
"x": 75,
73+
"y": 45,
74+
"service": "lambda",
75+
"label": "AWS Lambda"
76+
},
77+
"icon4": {
78+
"x": 90,
79+
"y": 75,
80+
"service": "lambda",
81+
"label": "AWS Lambda"
82+
},
83+
"line1": {
84+
"from": "icon1",
85+
"to": "icon2"
86+
},
87+
"line2": {
88+
"from": "icon1",
89+
"to": "icon3"
90+
},
91+
"line3": {
92+
"from": "icon1",
93+
"to": "icon4"
94+
}
95+
}
96+
}

0 commit comments

Comments
 (0)