-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.yaml
More file actions
254 lines (250 loc) · 6.89 KB
/
support.yaml
File metadata and controls
254 lines (250 loc) · 6.89 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
244
245
246
247
248
249
250
251
252
253
254
AWSTemplateFormatVersion: '2010-09-09'
Description: >
CASE Website Support
Parameters:
Stage:
Type: String
Description: Deployment environment (e.g., test or prod)
AllowedValues:
- test
- prod
Mappings:
StageConfig:
# Top-level keys are the stage names
test:
AppDomain: test-web.consultwithcase.com
prod:
AppDomain: consultwithcase.com
Conditions:
IsProd: !Equals
- !Ref Stage
- prod
Resources:
cloudFrontOriginAccessControl:
Type: 'AWS::CloudFront::OriginAccessControl'
Properties:
OriginAccessControlConfig:
Name: !Join
- ''
- - case-website-app-oac-
- !Ref Stage
Description: Access control for S3 origin (OAC) for case website
SigningProtocol: sigv4
SigningBehavior: always
OriginAccessControlOriginType: s3
acmCertificate:
Type: 'AWS::CertificateManager::Certificate'
Properties:
DomainName: !FindInMap
- StageConfig
- !Ref Stage
- AppDomain
SubjectAlternativeNames: !If
- IsProd
- - !Join
- ''
- - 'www.'
- !FindInMap
- StageConfig
- !Ref Stage
- AppDomain
- !Ref AWS::NoValue
ValidationMethod: DNS
Tags:
- Key: Application
Value: case-website-app
- Key: Stage
Value: !Ref Stage
webAcl:
Type: 'AWS::WAFv2::WebACL'
Properties:
DefaultAction:
Allow: {}
Scope: CLOUDFRONT
VisibilityConfig:
CloudWatchMetricsEnabled: true
MetricName: !Join
- ''
- - case-website-app-waf-
- !Ref Stage
SampledRequestsEnabled: true
Name: !Join
- ''
- - case-website-app-waf-
- !Ref Stage
Tags:
- Key: Application
Value: case-website-app
- Key: Stage
Value: !Ref Stage
s3Logs:
Type: 'AWS::S3::Bucket'
Properties:
BucketName: !Join
- ''
- - case-website-logs-
- !Ref Stage
LifecycleConfiguration:
Rules:
- Id: Purge old log files
ExpirationInDays: 120
Status: Enabled
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
Tags:
- Key: Application
Value: case-website-app
- Key: Stage
Value: !Ref Stage
s3FrontEnd:
DependsOn: s3Logs
Type: 'AWS::S3::Bucket'
Properties:
BucketName: !Join
- ''
- - case-website-front-end-
- !Ref Stage
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
LoggingConfiguration:
DestinationBucketName: !Ref s3Logs
LogFilePrefix: s3-logs/app/
Tags:
- Key: Application
Value: case-website-app
- Key: Stage
Value: !Ref Stage
s3FrontEndBucketPolicy:
DependsOn:
- s3FrontEnd
- cloudFrontDistribution
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket: !Ref s3FrontEnd
PolicyDocument:
Statement:
- Sid: Grant a CloudFront Origin Access Control to support private content
Action:
- 's3:GetObject'
Effect: Allow
Resource: !Join
- ''
- - 'arn:aws:s3:::'
- !Ref s3FrontEnd
- /*
Principal:
Service: cloudfront.amazonaws.com
Condition:
StringEquals:
AWS:SourceAccount: !Ref AWS::AccountId
AWS:SourceArn: !Sub arn:${AWS::Partition}:cloudfront::${AWS::AccountId}:distribution/${cloudFrontDistribution}
cloudFrontDistribution:
DependsOn:
- s3FrontEnd
- cloudFrontOriginAccessControl
- acmCertificate
- webAcl
Type: 'AWS::CloudFront::Distribution'
Properties:
DistributionConfig:
Origins:
- DomainName: !GetAtt
- s3FrontEnd
- DomainName
Id: !Join
- ''
- - case-website-app-
- !Ref Stage
S3OriginConfig: {}
OriginAccessControlId: !Ref cloudFrontOriginAccessControl
- DomainName: !ImportValue
'Fn::Sub': 'case-website-${Stage}:ApiDomain'
Id: !Join
- ''
- - case-website-api-
- !Ref Stage
CustomOriginConfig:
HTTPSPort: 443
OriginProtocolPolicy: https-only
OriginPath: /Prod
Enabled: true
Comment: Website
DefaultRootObject: index.html
CustomErrorResponses:
- ErrorCode: '404'
ResponsePagePath: '/index.html'
ResponseCode: '200'
ErrorCachingMinTTL: '300'
- ErrorCode: '403'
ResponsePagePath: '/index.html'
ResponseCode: '200'
ErrorCachingMinTTL: '300'
DefaultCacheBehavior:
TargetOriginId: !Join
- ''
- - case-website-app-
- !Ref Stage
ViewerProtocolPolicy: redirect-to-https
AllowedMethods:
- GET
- HEAD
- OPTIONS
CachedMethods:
- GET
- HEAD
CachePolicyId: 658327ea-f89d-4fab-a63d-7e88639e58f6 # CachingOptimized
Compress: true
CacheBehaviors:
- PathPattern: /api/*
TargetOriginId: !Join
- ''
- - case-website-api-
- !Ref Stage
ViewerProtocolPolicy: https-only
AllowedMethods:
- DELETE
- GET
- HEAD
- OPTIONS
- PATCH
- POST
- PUT
CachedMethods:
- GET
- HEAD
Compress: true
CachePolicyId: 4135ea2d-6df8-44a3-9df3-4b5a84be39ad # CachingDisabled
PriceClass: PriceClass_100
ViewerCertificate:
AcmCertificateArn: !Ref acmCertificate # TODO: add new resource for appcert
MinimumProtocolVersion: TLSv1.3_2025
SslSupportMethod: sni-only
WebACLId: !GetAtt webAcl.Arn
Aliases: !If
- IsProd
- - !FindInMap
- StageConfig
- !Ref Stage
- AppDomain
- !Join
- ''
- - 'www.'
- !FindInMap
- StageConfig
- !Ref Stage
- AppDomain
- - !FindInMap
- StageConfig
- !Ref Stage
- AppDomain
Tags:
- Key: Application
Value: case-website-app
- Key: Stage
Value: !Ref Stage