-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
194 lines (183 loc) · 6.03 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
serverless-bugtracker
My bug tracker. Uses Amazon Serverless Stack
Globals:
Function:
Timeout: 5
VpcConfig:
SecurityGroupIds:
- !ImportValue
'Fn::Sub': '${GlobalResourceStack}-LambdaSecurityGroup'
SubnetIds:
- !ImportValue
'Fn::Sub': '${GlobalResourceStack}-LambdaSubnet'
MemorySize: !FindInMap [LambdaSizes, !Ref Env, memorySize]
Environment:
Variables:
LOGIN: !Ref DbLogin
DB_NAME: !Sub '{{resolve:ssm:/${Env}/serverless-bugtracker/db-name}}'
HOST: !ImportValue
'Fn::Sub': '${GlobalResourceStack}-DBHost'
ReservedConcurrentExecutions: 10
ProvisionedConcurrencyConfig:
ProvisionedConcurrentExecutions: 2
Layers:
- !Ref CommonFunctionDependencies
Parameters:
Env:
Description: Environment name
Type: String
Default: dev
GlobalResourceStack:
Description: Name of the global resources stack
Type: String
Default: serverless-bugtracker-global-resources
DbLogin:
Description: Login stored in SSM
Type: AWS::SSM::Parameter::Value<String>
Default: /global/serverless-bugtracker/db-login
Mappings:
LambdaSizes:
dev:
"memorySize": "128"
qa:
"memorySize": "128"
stg:
"memorySize": "512"
Resources:
BugTrackerApi:
Type: AWS::Serverless::Api
Properties:
StageName: prod
OpenApiVersion: "3.0.3"
TracingEnabled: true
MethodSettings:
- LoggingLevel: INFO
ResourcePath: '/*' # allows for logging on any resource
HttpMethod: '*' # allows for logging on any method
AccessLogSetting:
DestinationArn: !GetAtt AccessLogGroup.Arn
Format: '{"requestTime":"$context.requestTime","requestId":"$context.requestId","httpMethod":"$context.httpMethod","path":"$context.path","resourcePath":"$context.resourcePath","status":$context.status,"responseLatency":$context.responseLatency}'
EndpointConfiguration:
Type: PRIVATE
VPCEndpointIds:
- !ImportValue
'Fn::Sub': '${GlobalResourceStack}-VPCeApiGW'
Auth:
ResourcePolicy:
IntrinsicVpceWhitelist:
- !ImportValue
'Fn::Sub': '${GlobalResourceStack}-VPCeApiGW'
AccessLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 14
GetProjectByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/handlers/get-project-by-id
Handler: app.lambdaHandler
Runtime: nodejs14.x
Tracing: Active
Events:
ApiEvent:
Type: Api
Properties:
Path: /projects/{projectId}
Method: get
RestApiId: !Ref BugTrackerApi
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource:
- !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/global/serverless-bugtracker/db-password'
- !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/global/serverless-bugtracker/github-token'
AddTeamMemberFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/handlers/add-person
Handler: app.lambdaHandler
Runtime: nodejs14.x
Events:
HelloWorld:
Type: Api
Properties:
Path: /projects/{projectId}/members/{memberId}
Method: put
RestApiId: !Ref BugTrackerApi
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource:
- !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/global/serverless-bugtracker/db-password'
RemoveTeamMemberFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/handlers/remove-person
Handler: app.lambdaHandler
Runtime: nodejs14.x
Events:
HelloWorld:
Type: Api
Properties:
Path: /projects/{projectId}/members/{memberId}
Method: delete
RestApiId: !Ref BugTrackerApi
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource:
- !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/global/serverless-bugtracker/db-password'
UpdateProjectFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/handlers/update-project
Handler: app.lambdaHandler
Runtime: nodejs14.x
Events:
HelloWorld:
Type: Api
Properties:
Path: /projects/{projectId}
Method: put
RestApiId: !Ref BugTrackerApi
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource:
- !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/global/serverless-bugtracker/db-password'
CommonFunctionDependencies:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: common-function-dependencies
Description: Common dependencies for all functions.
ContentUri: ./src/layers/common-function-dependencies
CompatibleRuntimes:
- nodejs14.x
RetentionPolicy: Delete
Metadata:
BuildMethod: nodejs14.x
Outputs:
GetProjectByIdFunctionApi:
Description: "API Gateway endpoint URL for Prod stage for GetProjectByIdFunction"
Value: !Sub "https://${BugTrackerApi}.execute-api.${AWS::Region}.amazonaws.com/dev/hello/"
GetProjectByIdFunction:
Description: "GetProjectByIdFunction Lambda Function ARN"
Value: !GetAtt GetProjectByIdFunction.Arn
GetProjectByIdFunctionIamRole:
Description: "Implicit IAM Role created for GetProjectByIdFunction function"
Value: !GetAtt GetProjectByIdFunctionRole.Arn