forked from aws-samples/serverless-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-pattern.json
More file actions
58 lines (58 loc) · 1.86 KB
/
Copy pathexample-pattern.json
File metadata and controls
58 lines (58 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"title": "Application Load Balancer with Lambda as target",
"description": "Create an Application Load Balancer with Lambda as target using CDK",
"language": "TypeScript",
"level": "200",
"framework": "AWS CDK",
"introBox": {
"headline": "How it works",
"text": [
"This sample project demonstrates how to create an Application Load Balancer with AWS Lambda as target.",
"Implemented in CDK."
]
},
"gitHub": {
"template": {
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/alb-lambda-cdk",
"templateURL": "serverless-patterns/alb-lambda-cdk",
"projectFolder": "alb-lambda-cdk",
"templateFile": "alb-lambda-cdk/alb-lambda-cdk-stack.ts"
}
},
"resources": {
"bullets": [
{
"text": "Application Load Balancer",
"link": "https://docs.aws.amazon.com/elasticloadbalancing/latest/application/introduction.html"
},
{
"text": "ALB - Lambda target",
"link": "https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html"
}
]
},
"deploy": {
"text": [
"cdk deploy --all"
]
},
"testing": {
"text": [
"See the GitHub repo for detailed testing instructions."
]
},
"cleanup": {
"text": [
"Delete the stack: <code>cdk destroy --all</code>."
]
},
"authors": [
{
"name": "Pubudu Jayawardana",
"image": "https://avatars.githubusercontent.com/u/1263087",
"bio": "AWS Community Builder in Serverless category. Serverless advocate and enthusiast.",
"linkedin": "pubudusj",
"twitter": "@pubudusj"
}
]
}