-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
258 lines (246 loc) · 7.82 KB
/
template.yaml
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
todo-list-aws
Sample SAM Template for todo-list-aws
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 3
Runtime: python3.7
#Timeout: 180
Environment:
Variables:
DYNAMODB_TABLE: !Sub "todosTable-${Stage}"
ENVIRONMENT: !Ref Stage
Parameters:
Stage:
Type: String
Default: default
AllowedValues:
- default
- staging
- production
Description: Ingrese el entorno a desplegar (staging o production). Por defecto es default.
Resources:
ListFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: list.list
Events:
List:
Type: Api
Properties:
Path: /todos
Method: get
Policies:
Statement:
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
GetFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: get.get
Events:
List:
Type: Api
Properties:
Path: /todos/{id}
Method: get
Policies:
Statement:
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
CreateFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: create.create
Events:
Create:
Type: Api
Properties:
Path: /todos
Method: post
Policies:
Statement:
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
DeleteFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: delete.delete
Events:
Create:
Type: Api
Properties:
Path: /todos/{id}
Method: delete
Policies:
Statement:
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
UpdateFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: update.update
Events:
Create:
Type: Api
Properties:
Path: /todos/{id}
Method: put
Policies:
Statement:
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
TranslateFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: translate.translate
Events:
Translate:
Type: Api
Properties:
Path: /todos/{id}/{lang}
Method: get
Policies:
Statement:
- Sid: AccesoDynamoDB
Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Resource:
!Sub "arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/todosTable-${Stage}"
- Sid: AccesoAmazonTranslate
Effect: Allow
Action:
- 'translate:TranslateText'
- 'translate:GetTerminology'
- 'translate:ListTerminologies'
- 'translate:ListTextTranslationJobs'
- 'translate:DescribeTextTranslationJob'
- 'translate:GetParallelData'
- 'translate:ListParallelData'
- 'comprehend:DetectDominantLanguage'
- 'cloudwatch:GetMetricStatistics'
- 'cloudwatch:ListMetrics'
Resource: "*"
todosTable:
Type: 'AWS::DynamoDB::Table'
Properties:
TableName: !Sub "todosTable-${Stage}"
AttributeDefinitions:
- AttributeName: id
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
Outputs:
ListApi:
Description: "API Gateway endpoint URL for ${Stage} stage for List function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/"
ListFunction:
Description: "List Lambda Function ARN"
Value: !GetAtt ListFunction.Arn
ListFunctionIamRole:
Description: "Implicit IAM Role created for List function"
Value: !GetAtt ListFunctionRole.Arn
GetApi:
Description: "API Gateway endpoint URL for ${Stage} stage for Get function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/{id}"
GetFunction:
Description: "Get Lambda Function ARN"
Value: !GetAtt GetFunction.Arn
GetFunctionIamRole:
Description: "Implicit IAM Role created for Get function"
Value: !GetAtt GetFunctionRole.Arn
CreateApi:
Description: "API Gateway endpoint URL for ${Stage} stage for Create function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/"
CreateFunction:
Description: "Create Lambda Function ARN"
Value: !GetAtt CreateFunction.Arn
CreateFunctionIamRole:
Description: "Implicit IAM Role created for Create function"
Value: !GetAtt CreateFunctionRole.Arn
DeleteApi:
Description: "API Gateway endpoint URL for ${Stage} stage for Delete function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/{id}"
DeleteFunction:
Description: "Delete Lambda Function ARN"
Value: !GetAtt DeleteFunction.Arn
DeleteFunctionIamRole:
Description: "Implicit IAM Role created for Delete function"
Value: !GetAtt DeleteFunctionRole.Arn
UpdateApi:
Description: "API Gateway endpoint URL for ${Stage} stage for Update function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/{id}"
UpdateFunction:
Description: "Update Lambda Function ARN"
Value: !GetAtt UpdateFunction.Arn
UpdateFunctionIamRole:
Description: "Implicit IAM Role created for Update function"
Value: !GetAtt UpdateFunctionRole.Arn
TranslateApi:
Description: "API Gateway endpoint URL for ${Stage} stage for Translate function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/todos/{id}{lang}"
TranslateFunction:
Description: "Translate Lambda Function ARN"
Value: !GetAtt TranslateFunction.Arn
TranslateFunctionIamRole:
Description: "Implicit IAM Role created for Translate function"
Value: !GetAtt TranslateFunctionRole.Arn