-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
101 lines (97 loc) · 2.39 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Parameters:
Stage:
Type: String
Description: Stage name for Api Gateway
AllowedValues:
- dev
- prod
Globals:
Function:
Runtime: java11
Timeout: 20
MemorySize: 512
AutoPublishAlias: !Ref Stage
Environment:
Variables:
TABLE: !Ref productsTable
Tracing: Active
Resources:
myApi:
Type: AWS::Serverless::Api
Properties:
StageName: !Ref Stage
Variables:
LAMBDA_ALIAS: !Ref Stage
TracingEnabled: true
productsTable:
Type: AWS::Serverless::SimpleTable
Properties:
PrimaryKey:
Name: productId
Type: String
SSESpecification:
SSEEnabled: true
getFunction:
Type: AWS::Serverless::Function
Properties:
Handler: org.example.handler.GetHandler::handleRequest
Policies:
- DynamoDBReadPolicy:
TableName: !Ref productsTable
Events:
ApiEvent:
Type: Api
Properties:
Method: get
Path: /products/{id}
RestApiId: !Ref myApi
postFunction:
Type: AWS::Serverless::Function
Properties:
Handler: org.example.handler.PostHandler::handleRequest
Policies:
- DynamoDBWritePolicy:
TableName: !Ref productsTable
Events:
ApiEvent:
Type: Api
Properties:
Method: post
Path: /products
RestApiId:
Ref: myApi
putFunction:
Type: AWS::Serverless::Function
Properties:
Handler: org.example.handler.PutHandler::handleRequest
Policies:
- DynamoDBWritePolicy:
TableName: !Ref productsTable
Events:
ApiEvent:
Type: Api
Properties:
Method: put
Path: /products
RestApiId:
Ref: myApi
deleteFunction:
Type: AWS::Serverless::Function
Properties:
Handler: org.example.handler.PutHandler::handleRequest
Policies:
- DynamoDBWritePolicy:
TableName: !Ref productsTable
Events:
ApiEvent:
Type: Api
Properties:
Method: delete
Path: /products/{id}
RestApiId:
Ref: myApi
Outputs:
Endpoint:
Value: !Sub "https://${myApi}.execute-api.${AWS::Region}.amazonaws.com/${Stage}/products"