forked from brysontyrrell/CommunityPatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
716 lines (639 loc) · 21.1 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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Description: A community managed patch server for Jamf Pro.
Parameters:
ParameterStorePath:
Type: String
Description: The root path for parameter store values.
Default: /communitypatch
DomainName:
Type: String
Description: The custom domain name for the API.
HostedZoneId:
Type: AWS::Route53::HostedZone::Id
Description: The ID of hosted zone for the Route53 record.
CertificateId:
Type: String
Description: The UUID for the certificate to use for the custom domain.
# SAM Globals
Globals:
Function:
Runtime: python3.6
Handler: index.lambda_handler
MemorySize: 256
Environment:
Variables:
CONTRIBUTORS_TABLE: !Ref ContributorsTable
DOMAIN_NAME: !Ref DomainName
EMAIL_SNS_TOPIC: !Ref SendEmailTopic
PARAM_STORE_PATH: !Ref ParameterStorePath
TITLES_BUCKET: !Ref TitlesBucket
TITLES_TABLE: !Ref TitlesTable
Resources:
# S3 Buckets
TitlesBucket:
Type: AWS::S3::Bucket
TitlesBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref TitlesBucket
PolicyDocument:
Statement:
- Action: s3:GetObject
Effect: Allow
Resource: !Sub '${TitlesBucket.Arn}/*'
Principal:
AWS: !Sub 'arn:aws:iam::cloudfront:user/CloudFront Origin Access Identity ${CloudFrontOriginAccessIdentity}'
WebContentBucket:
Type: AWS::S3::Bucket
WebContentBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref WebContentBucket
PolicyDocument:
Statement:
- Action: s3:GetObject
Effect: Allow
Resource: !Sub '${WebContentBucket.Arn}/*'
Principal:
AWS: !Sub 'arn:aws:iam::cloudfront:user/CloudFront Origin Access Identity ${CloudFrontOriginAccessIdentity}'
# DynamoDB Tables
ContributorsTable:
Type: AWS::Serverless::SimpleTable
Properties:
PrimaryKey:
Name: id
Type: String
BlackListedTokensTable:
Type: AWS::Serverless::SimpleTable
Properties:
PrimaryKey:
Name: token_id
Type: String
TitlesTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: contributor_id
AttributeType: S
- AttributeName: title_id
AttributeType: S
KeySchema:
- AttributeName: contributor_id
KeyType: HASH
- AttributeName: title_id
KeyType: RANGE
# SNS Topics
SendEmailTopic:
Type: AWS::SNS::Topic
# API Gateway
ApiGateway:
Type: AWS::Serverless::Api
Properties:
StageName: Prod
DefinitionBody:
swagger: "2.0"
info:
title: !Ref AWS::StackName
securityDefinitions:
authorizer:
type: apiKey
name: Authorization
in: header
x-amazon-apigateway-authtype: custom
x-amazon-apigateway-authorizer:
type: token
authorizerUri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${Authorizer.Arn}/invocations'
authorizerResultTtlInSeconds: 300
paths:
"/":
get:
x-amazon-apigateway-integration:
contentHandling: "CONVERT_TO_TEXT"
type: aws
httpMethod: post
uri: !Sub "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${WebView.Arn}/invocations"
passthroughBehavior: "when_no_match"
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Content-Type: "'text/html'"
responseTemplates:
text/html: "$input.path('$')"
produces:
- "text/html"
responses:
"200":
description: "200 response"
headers:
Content-Type:
type: "string"
"/api/v1/contributors":
get:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiContributorsGet.Arn}/invocations'
responses: {}
"/api/v1/contributors/register":
post:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiContributorRegistration.Arn}/invocations'
responses: {}
"/api/v1/contributors/verify":
get:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiContributorVerification.Arn}/invocations'
responses: {}
"/api/v1/titles":
post:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitlesCreate.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/api/v1/titles/{title}/version":
post:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitleVersions.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/api/v1/titles/{title}/version/{version}":
delete:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitleVersions.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/api/v1/titles/{title}/versions":
post:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitleVersions.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/api/v1/titles/{title}/versions/{version}":
delete:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitleVersions.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/api/v1/titles/{title}":
delete:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiTitlesDelete.Arn}/invocations'
responses: {}
security:
- authorizer: []
"/jamf/v1/{contributor}/software":
get:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiJamfSoftware.Arn}/invocations'
responses: {}
"/jamf/v1/{contributor}/software/{titles}":
get:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiJamfSoftware.Arn}/invocations'
responses: {}
"/jamf/v1/{contributor}/patch/{title}":
get:
x-amazon-apigateway-integration:
httpMethod: post
type: aws_proxy
uri: !Sub 'arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ApiJamfPatch.Arn}/invocations'
responses: {}
# ApiGatewayUsagePlan:
# Type: AWS::ApiGateway::UsagePlan
# Properties:
# ApiStages:
# - ApiId: !Ref ApiGateway
# Stage: Prod
# Quota:
# Limit: 1000
# Period: DAY
# Throttle: ThrottleSettings
# CloudFront Distribution
CloudFrontOriginAccessIdentity:
Type: AWS::CloudFront::CloudFrontOriginAccessIdentity
Properties:
CloudFrontOriginAccessIdentityConfig:
Comment: !Sub '${AWS::StackName}-origin-access-identity'
CloudFrontDistribution:
Type: AWS::CloudFront::Distribution
Properties:
DistributionConfig:
Enabled: true
Comment: Unified domain for CommunityPatch.
Aliases:
- !Ref DomainName
ViewerCertificate:
AcmCertificateArn: !Sub 'arn:aws:acm:us-east-1:${AWS::AccountId}:certificate/${CertificateId}'
SslSupportMethod: sni-only
MinimumProtocolVersion: TLSv1.1_2016
DefaultCacheBehavior:
AllowedMethods:
- DELETE
- GET
- HEAD
- OPTIONS
- PATCH
- POST
- PUT
CachedMethods:
- GET
- HEAD
- OPTIONS
Compress: true
DefaultTTL: 300
ForwardedValues:
Headers:
- Accept
- Referer
- Authorization
- Content-Type
QueryString: true
MaxTTL: 300
TargetOriginId: ApiGatewayOrigin
ViewerProtocolPolicy: https-only
CacheBehaviors:
- Compress: true
DefaultTTL: 300
ForwardedValues:
QueryString: true
PathPattern: '/titles/*'
MaxTTL: 300
TargetOriginId: TitlesBucketOrigin
ViewerProtocolPolicy: allow-all
- Compress: true
ForwardedValues:
QueryString: true
PathPattern: '/images/*'
TargetOriginId: WebContentBucketOrigin
ViewerProtocolPolicy: allow-all
- Compress: true
ForwardedValues:
QueryString: true
PathPattern: '/css/*'
TargetOriginId: WebContentBucketOrigin
ViewerProtocolPolicy: allow-all
Origins:
- DomainName: !Sub '${ApiGateway}.execute-api.${AWS::Region}.amazonaws.com'
Id: ApiGatewayOrigin
CustomOriginConfig:
OriginProtocolPolicy: https-only
OriginPath: /Prod
- DomainName: !GetAtt TitlesBucket.DomainName
Id: TitlesBucketOrigin
S3OriginConfig:
OriginAccessIdentity: !Sub 'origin-access-identity/cloudfront/${CloudFrontOriginAccessIdentity}'
- DomainName: !GetAtt WebContentBucket.DomainName
Id: WebContentBucketOrigin
S3OriginConfig:
OriginAccessIdentity: !Sub 'origin-access-identity/cloudfront/${CloudFrontOriginAccessIdentity}'
# Route 53 Record
CloudFrontRoute53Record:
Type: AWS::Route53::RecordSet
Properties:
Name: !Ref DomainName
Type: A
HostedZoneId: !Ref HostedZoneId
AliasTarget:
DNSName: !GetAtt CloudFrontDistribution.DomainName
EvaluateTargetHealth: false
HostedZoneId: Z2FDTNDATAQYW2
# Lambda Layers
ApiShared:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/layers/api_shared
ApiSharedLayer:
Type: AWS::Serverless::LayerVersion
Properties:
ContentUri: ./.aws-sam/build/ApiShared
CompatibleRuntimes:
- python3.6
RetentionPolicy: Delete
DependsOn:
- ApiShared
SecurityShared:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/layers/security_shared
SecuritySharedLayer:
Type: AWS::Serverless::LayerVersion
Properties:
ContentUri: ./.aws-sam/build/SecurityShared
CompatibleRuntimes:
- python3.6
RetentionPolicy: Delete
DependsOn:
- SecurityShared
# Web View
WebView:
Type: AWS::Serverless::Function
Description: Renders the main web page displaying all available titles.
Properties:
CodeUri: ./src/functions/web_view
Timeout: 15
Events:
Index:
Type: Api
Properties:
Path: /
Method: get
RestApiId:
Ref: ApiGateway
# Contributor Management
ApiContributorRegistration:
Type: AWS::Serverless::Function
Description: Creates and rotates tokens.
Properties:
CodeUri: ./src/functions/contributors/api_contributor_registration
Handler: api_contributor_registration.lambda_handler
Layers:
- !Ref ApiSharedLayer
- !Ref SecuritySharedLayer
Policies:
Statement:
- Effect: Allow
Action: dynamodb:PutItem
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${ContributorsTable}'
- Effect: Allow
Action: sns:Publish
Resource: !Ref SendEmailTopic
- Effect: Allow
Action: ssm:GetParameter*
Resource: !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter${ParameterStorePath}*'
Events:
ApiContributorRegistration:
Type: Api
Properties:
Path: /api/v1/contributors/register
Method: post
RestApiId:
Ref: ApiGateway
ApiContributorVerification:
Type: AWS::Serverless::Function
Description: Generate an API token upon account verification.
Properties:
CodeUri: ./src/functions/contributors/api_contributor_verification
Handler: api_contributor_verification.lambda_handler
Layers:
- !Ref SecuritySharedLayer
Policies:
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:UpdateItem
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${ContributorsTable}'
- Effect: Allow
Action: sns:Publish
Resource: !Ref SendEmailTopic
- Effect: Allow
Action: ssm:GetParameter*
Resource: !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter${ParameterStorePath}*'
Events:
ApiContributorRegistration:
Type: Api
Properties:
Path: /api/v1/contributors/verify
Method: get
RestApiId:
Ref: ApiGateway
ApiContributorsGet:
Type: AWS::Serverless::Function
Description: List contributors on CommunityPatch.
Properties:
CodeUri: ./src/functions/contributors/api_contributors_get
Handler: api_contributors_get.lambda_handler
Layers:
- !Ref ApiSharedLayer
- !Ref SecuritySharedLayer
Policies:
- DynamoDBReadPolicy:
TableName: !Ref ContributorsTable
- DynamoDBReadPolicy:
TableName: !Ref TitlesTable
Events:
ApiContributorRegistration:
Type: Api
Properties:
Path: /api/v1/contributors
Method: get
RestApiId:
Ref: ApiGateway
# Token Authorizer
Authorizer:
Type: AWS::Serverless::Function
Description: Token validation for Uploader.
Properties:
CodeUri: ./src/functions/authorizer
Handler: authorizer.lambda_handler
Layers:
- !Ref SecuritySharedLayer
Environment:
Variables:
BLACKLIST_TABLE: !Ref BlackListedTokensTable
Policies:
Statement:
- Effect: Allow
Action: dynamodb:GetItem
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${BlackListedTokensTable}'
- Effect: Allow
Action: ssm:GetParameter*
Resource: !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter${ParameterStorePath}*'
AuthorizerPermissions:
Type: AWS::Lambda::Permission
DependsOn:
- ApiGateway
- Authorizer
Properties:
Action: lambda:InvokeFunction
FunctionName:
Ref: Authorizer
Principal: apigateway.amazonaws.com
# Titles API
ApiTitlesCreate:
Type: AWS::Serverless::Function
Description: Handles API requests for creating software title definitions.
Properties:
CodeUri: ./src/functions/titles/api_titles_create
Handler: api_titles_create.lambda_handler
Layers:
- !Ref ApiSharedLayer
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TitlesTable
- S3CrudPolicy:
BucketName: !Ref TitlesBucket
Events:
CreateTitle:
Type: Api
Properties:
Path: /api/v1/titles
Method: post
RestApiId:
Ref: ApiGateway
ApiTitleVersions:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/functions/titles/api_versions
Layers:
- !Ref ApiSharedLayer
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TitlesTable
- S3CrudPolicy:
BucketName: !Ref TitlesBucket
Events:
NewVersionDep:
Type: Api
Properties:
Path: /api/v1/titles/{title}/version
Method: post
RestApiId:
Ref: ApiGateway
DeleteVersionDep:
Type: Api
Properties:
Path: /api/v1/titles/{title}/version/{version}
Method: delete
RestApiId:
Ref: ApiGateway
NewVersion:
Type: Api
Properties:
Path: /api/v1/titles/{title}/versions
Method: post
RestApiId:
Ref: ApiGateway
DeleteVersion:
Type: Api
Properties:
Path: /api/v1/titles/{title}/versions/{version}
Method: delete
RestApiId:
Ref: ApiGateway
ApiTitlesDelete:
Type: AWS::Serverless::Function
Description: Handles API requests for deleting patch definitions.
Properties:
CodeUri: ./src/functions/titles/api_titles_delete
Handler: api_titles_delete.lambda_handler
Layers:
- !Ref ApiSharedLayer
Policies:
Statement:
- Effect: Allow
Action: s3:DeleteObject
Resource: !Sub 'arn:aws:s3:::${TitlesBucket}/*'
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:DeleteItem
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${TitlesTable}'
Events:
DeleteTitle:
Type: Api
Properties:
Path: /api/v1/titles/{title}
Method: delete
RestApiId:
Ref: ApiGateway
# Jamf API
ApiJamfSoftware:
Type: AWS::Serverless::Function
Description: Handles Jamf Pro requests for software lists.
Properties:
CodeUri: ./src/functions/jamf/api_jamf_software
Handler: api_jamf_software.lambda_handler
Layers:
- !Ref ApiSharedLayer
Policies:
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:Query
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${TitlesTable}'
Events:
GetAllSoftware:
Type: Api
Properties:
Path: /jamf/v1/{contributor}/software
Method: get
RestApiId:
Ref: ApiGateway
GetSelectSoftware:
Type: Api
Properties:
Path: /jamf/v1/{contributor}/software/{titles}
Method: get
RestApiId:
Ref: ApiGateway
ApiJamfPatch:
Type: AWS::Serverless::Function
Description: Handles Jamf Pro requests for patch definitions.
Properties:
CodeUri: ./src/functions/jamf/api_jamf_patch
Handler: api_jamf_patch.lambda_handler
Layers:
- !Ref ApiSharedLayer
Policies:
Statement:
- Effect: Allow
Action: s3:GetObject
Resource: !Sub 'arn:aws:s3:::${TitlesBucket}/*'
Events:
GetPatch:
Type: Api
Properties:
Path: /jamf/v1/{contributor}/patch/{title}
Method: get
RestApiId:
Ref: ApiGateway
# Email Service
EmailService:
Type: AWS::Serverless::Function
Description: Email notification service.
Properties:
Handler: email_service.lambda_handler
CodeUri: ./src/functions/email_service
Policies:
Statement:
- Effect: Allow
Action: ses:SendEmail
Resource: '*'
Condition:
StringEquals:
ses:FromAddress: !Sub 'noreply@${DomainName}'
Events:
SnsTopic:
Type: SNS
Properties:
Topic: !Ref SendEmailTopic