forked from monken/aws-ecr-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.template.yml
150 lines (138 loc) · 4.48 KB
/
serverless.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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: https://github.com/monken/aws-ecr-public
Parameters:
ValidationDomain:
Type: String
Default: ''
Description: Overwrite default Validation Domain for ACM Certificate
DomainName:
Type: String
Default: ''
Description: If provided an ACM Certificate and API Domain Name will be created
ValidationMethod:
Type: String
Default: 'EMAIL'
AllowedValues: ["EMAIL", "DNS"]
Description: If provided an ACM Certificate and API Domain Name will be created
Conditions:
HasValidationDomain: !Not [ !Equals [ !Ref ValidationDomain, '' ] ]
HasDomainName: !Not [ !Equals [ !Ref DomainName, '' ] ]
Resources:
CloudWatchRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: apigateway.amazonaws.com
Action: sts:AssumeRole
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonAPIGatewayPushToCloudWatchLogs
ApiGatewayRole:
Type: AWS::ApiGateway::Account
DependsOn: Api
Properties:
CloudWatchRoleArn: !GetAtt CloudWatchRole.Arn
ApiAccessLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /${AWS::StackName}/accesslog
RetentionInDays: 7
Api:
Type: AWS::Serverless::Api
Properties:
StageName: v2
DefinitionBody: !Include api.openapi.yml
EndpointConfiguration: REGIONAL
MinimumCompressionSize: 0
TracingEnabled: true
AccessLogSetting:
DestinationArn: !GetAtt ApiAccessLogGroup.Arn
Format:
# https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference
Fn::Stringify:
requestId: $context.requestId
ip: $context.identity.sourceIp
caller: $context.identity.caller
userArn: $context.identity.userArn
requestTimeEpoch: $context.requestTimeEpoch
httpMethod: $context.httpMethod
resourcePath: $context.resourcePath
path: $context.path
status: $context.status
protocol: $context.protocol
responseLength: $context.responseLength
responseLatency: $context.responseLatency
integrationLatency: $context.integrationLatency
error: $context.error
Certificate:
Type: AWS::CertificateManager::Certificate
Condition: HasDomainName
Properties:
DomainName: !Ref DomainName
ValidationMethod: !Ref ValidationMethod
DomainValidationOptions:
Fn::If:
- HasValidationDomain
- - DomainName: !Ref DomainName
ValidationDomain: !Ref ValidationDomain
- !Ref AWS::NoValue
ApiDomainName:
Type: AWS::ApiGateway::DomainName
Condition: HasDomainName
Properties:
RegionalCertificateArn: !Ref Certificate
DomainName: !Ref DomainName
EndpointConfiguration:
Types: [REGIONAL]
BasePathMapping:
Type: AWS::ApiGateway::BasePathMapping
Condition: HasDomainName
DependsOn: Apiv2Stage
Properties:
BasePath: v2
DomainName: !Ref ApiDomainName
RestApiId: !Ref Api
Stage: v2
Lambda:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs12.x
InlineCode: !Include { type: string, location: lambda.js }
Timeout: 30
Events:
Api:
Type: Api
Properties:
Path: /{proxy+}
Method: ANY
RestApiId: !Ref Api
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ecr:GetDownloadUrlForLayer
- ecr:BatchGetImage
Resource: '*'
Outputs:
ApiDomainName:
Value: !Sub ${Api}.execute-api.${AWS::Region}.amazonaws.com
Export:
Name: !Sub ${AWS::StackName}:ApiDomainName
RegionalDomainName:
Value: !If [ HasDomainName, !GetAtt ApiDomainName.RegionalDomainName, 'null']
Export:
Name: !Sub ${AWS::StackName}:RegionalDomainName
RegionalHostedZoneId:
Value: !If [ HasDomainName, !GetAtt ApiDomainName.RegionalHostedZoneId, 'null']
Export:
Name: !Sub ${AWS::StackName}:RegionalHostedZoneId
LambdaExecutionRoleName:
Value: !Ref LambdaRole
Export:
Name: !Sub ${AWS::StackName}:LambdaExecutionRoleName