-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
243 lines (227 loc) · 7.01 KB
/
template.yaml
File metadata and controls
243 lines (227 loc) · 7.01 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
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
# This is the SAM template that represents the architecture of your serverless application
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-template-basics.html
# The AWSTemplateFormatVersion identifies the capabilities of the template
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/format-version-structure.html
AWSTemplateFormatVersion: 2010-09-09
Description: >-
learn-sam
# Transform section specifies one or more macros that AWS CloudFormation uses to process your template
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-section-structure.html
Transform:
- AWS::Serverless-2016-10-31
Parameters:
# AWS Region for which Resources should be deployed.
RCU:
Description: Read capacity unit for DynamoDB Tables
Type: String
Default: '2'
WCU:
Description: Write capacity unit for DynamoDB Tables
Type: String
Default: '2'
GS1RCU:
Description: Global Secondary Index Read capacity unit for DynamoDB Tables
Type: String
Default: '1'
GS1WCU:
Description: Global Secondary Index Write capacity unit for DynamoDB Tables
Type: String
Default: '1'
Globals:
Function:
Runtime: nodejs12.x
CodeUri: ./src/handlers
Layers:
- !Ref MainLayer
Architectures:
- x86_64
MemorySize: 128
Timeout: 30
Environment:
Variables:
# Make table name accessible as environment variable from function code during execution
SAMPLE_TABLE: !Ref UserTable
# Resources declares the AWS resources that you want to include in the stack
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resources-section-structure.html
Resources:
# Each Lambda function is defined by properties:
# https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
# This is a Lambda function config associated with the source code: get-all-items.js
AuthApi:
Type: AWS::Serverless::Api
Properties:
StageName: Prod
Cors:
AllowMethods: "'*'"
AllowOrigin: "'*'"
AllowHeaders: "'Authorization, Content-Type'"
Auth:
DefaultAuthorizer: AuthAuthorizer
Authorizers:
AuthAuthorizer:
UserPoolArn: !GetAtt MyCognitoUserPool.Arn
AddDefaultAuthorizerToCorsPreflight: False
getAllItemsFunction:
Type: AWS::Serverless::Function
Properties:
Handler: get-all-items.handler
Description: A simple example includes a HTTP get method to get all items from a DynamoDB table.
Policies:
- Statement:
- Effect: "Allow"
Action:
- "dynamodb:Scan"
Resource: !GetAtt UserTable.Arn
Events:
Api:
Type: Api
Properties:
Path: /
Method: GET
getByIdFunction:
Type: AWS::Serverless::Function
Properties:
Handler: get-by-id.handler
Description: A simple example includes a HTTP get method to get one item by id from a DynamoDB table.
Policies:
- Statement:
- Effect: "Allow"
Action:
- "dynamodb:Query"
Resource: !GetAtt UserTable.Arn
Events:
Api:
Type: Api
Properties:
Path: /{id}
RestApiId: !Ref AuthApi
Method: GET
# Each Lambda function is defined by properties:
# https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
# This is a Lambda function config associated with the source code: put-item.js
putItemFunction:
Type: AWS::Serverless::Function
Properties:
Handler: put-item.handler
Description: A simple example includes a HTTP post method to add one item to a DynamoDB table.
Policies:
- Statement:
- Effect: "Allow"
Action:
- "dynamodb:PutItem"
Resource: !GetAtt UserTable.Arn
Events:
Api:
Type: Api
Properties:
Path: /
Method: POST
updateItemsFunction:
Type: AWS::Serverless::Function
Properties:
Handler: update-items.handler
Description: A simple example includes a HTTP PUT method to Update item to a DynamoDB table.
Policies:
- Statement:
- Effect: "Allow"
Action:
- "dynamodb:UpdateItem"
Resource: !GetAtt UserTable.Arn
Events:
Api:
Type: Api
Properties:
Path: /
Method: PUT
deleteItemsFunction:
Type: AWS::Serverless::Function
Properties:
Handler: delete-item.handler
Description: A simple example includes a HTTP PUT method to Update item to a DynamoDB table.
Policies:
- Statement:
- Effect: "Allow"
Action:
- "dynamodb:DeleteItem"
Resource: !GetAtt UserTable.Arn
Events:
Api:
Type: Api
Properties:
Path: /{id}
Method: DELETE
MyCognitoUserPool:
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: "sam-learn"
Policies:
PasswordPolicy:
MinimumLength: 8
UsernameAttributes:
- email
Schema:
- AttributeDataType: String
Name: email
Required: false
MyCognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
UserPoolId: !Ref MyCognitoUserPool
ClientName: "aws-learn"
GenerateSecret: false
UserTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
-
AttributeName: "PK"
AttributeType: "S"
-
AttributeName: "SK"
AttributeType: "S"
-
AttributeName: "GS1PK"
AttributeType: "S"
-
AttributeName: "GS1SK"
AttributeType: "S"
KeySchema:
-
AttributeName: "PK"
KeyType: "HASH"
-
AttributeName: "SK"
KeyType: "RANGE"
ProvisionedThroughput:
ReadCapacityUnits: !Ref RCU
WriteCapacityUnits: !Ref WCU
TableName: learnsam
GlobalSecondaryIndexes:
-
IndexName: "GSI"
KeySchema:
-
AttributeName: "GS1PK"
KeyType: "HASH"
-
AttributeName: "GS1SK"
KeyType: "RANGE"
Projection:
ProjectionType: "ALL"
ProvisionedThroughput:
ReadCapacityUnits: !Ref GS1RCU
WriteCapacityUnits: !Ref GS1WCU
MainLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: sam-learn-layer
Description: Dependencies for sam app [temp-units-conv]
ContentUri: mainLayer/
CompatibleRuntimes:
- nodejs16.x
LicenseInfo: "MIT"
RetentionPolicy: Retain
Outputs:
WebEndpoint:
Description: "API Gateway endpoint URL for Prod stage"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/"