forked from mstine/image-pipeline-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sam-template.yml
165 lines (163 loc) · 4.62 KB
/
sam-template.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Resources:
StineLambdaImages:
Type: AWS::S3::Bucket
StineLambdaThumbnails:
Type: AWS::S3::Bucket
ImageDb:
Type: 'AWS::Serverless::SimpleTable'
Properties:
PrimaryKey:
Name: Id
Type: String
ImagePipelineTrigger:
Type: 'AWS::Serverless::Function'
Properties:
Handler: index.handler
Runtime: nodejs6.10
CodeUri: ./image-pipeline-trigger
Policies:
- AWSStepFunctionsFullAccess
- CloudWatchLogsFullAccess
Timeout: 30
Environment:
Variables:
STATE_MACHINE_ARN: !Ref ImagePipelineStateMachine
Events:
NewImage:
Type: S3
Properties:
Bucket: !Ref StineLambdaImages
Events: s3:ObjectCreated:*
ImageAnalysis:
Type: 'AWS::Serverless::Function'
Properties:
Handler: index.handler
Runtime: nodejs6.10
CodeUri: ./image-analysis
Policies:
- AmazonRekognitionFullAccess
- CloudWatchLogsFullAccess
Timeout: 30
ImageResize:
Type: 'AWS::Serverless::Function'
Properties:
Handler: index.handler
Runtime: nodejs6.10
CodeUri: ./image-resize
Policies:
- AmazonS3FullAccess
- CloudWatchLogsFullAccess
MemorySize: 256
Timeout: 30
Environment:
Variables:
THUMBNAIL_BUCKET: !Ref StineLambdaThumbnails
ImageDbUpdate:
Type: 'AWS::Serverless::Function'
Properties:
Handler: index.handler
Runtime: nodejs6.10
CodeUri: ./image-db-update
Policies:
- AmazonDynamoDBFullAccess
- CloudWatchLogsFullAccess
Timeout: 30
Environment:
Variables:
TABLE_NAME: !Ref ImageDb
ImageApi:
Type: 'AWS::Serverless::Function'
Properties:
Handler: index.handler
Runtime: nodejs6.10
CodeUri: ./image-api
Policies:
- AmazonDynamoDBReadOnlyAccess
- CloudWatchLogsFullAccess
Timeout: 30
Environment:
Variables:
TABLE_NAME: !Ref ImageDb
Events:
ListAll:
Type: Api
Properties:
Path: /images
Method: get
GetImage:
Type: Api
Properties:
Path: /images/{id}
Method: get
StatesExecutionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service:
- !Sub states.${AWS::Region}.amazonaws.com
Action: "sts:AssumeRole"
Path: "/"
Policies:
- PolicyName: StatesExecutionPolicy
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "lambda:InvokeFunction"
Resource: "*"
ImagePipelineStateMachine:
Type: "AWS::StepFunctions::StateMachine"
Properties:
DefinitionString:
!Sub
- |-
{
"Comment": "An example of the Amazon States Language using a parallel state to execute two branches at the same time.",
"StartAt": "Parallel",
"States": {
"Parallel": {
"Type": "Parallel",
"Next": "DB Update",
"Branches": [
{
"StartAt": "Resize",
"States": {
"Resize": {
"Type": "Task",
"Resource": "${imageResizeArn}",
"End": true
}
}
},
{
"StartAt": "Analyze",
"States": {
"Analyze": {
"Type": "Task",
"Resource": "${imageAnalyzeArn}",
"End": true
}
}
}
]
},
"DB Update": {
"Type": "Task",
"Resource": "${dbUpdateArn}",
"Next": "Final State"
},
"Final State": {
"Type": "Pass",
"End": true
}
}
}
- {imageResizeArn: !GetAtt [ ImageResize, Arn ], imageAnalyzeArn: !GetAtt [ ImageAnalysis, Arn ], dbUpdateArn: !GetAtt [ ImageDbUpdate, Arn ]}
RoleArn: !GetAtt [ StatesExecutionRole, Arn ]