-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloud formation.yml
587 lines (533 loc) · 21.3 KB
/
cloud formation.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
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
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
#Frontend Stack information : Elastic Beanstalk
SolutionStackName:
Type: String
Default: "64bit Amazon Linux 2 v5.8.3 running Node.js 18"
Description: Elastic Beanstalk solution stack to use for the environment
# Getting Code from S3 for frontend and backend
CodeBucketName:
Description: Name of the S3 bucket where your backend code is located
Type: String
Default: term-project-code
#Reference to S3 Bucket file name for backend
BackendCodeKey:
Description: Object key of the backend code in the S3 bucket
Type: String
Default: backend.zip
#Reference to S3 Bucket file name for frontend
FrontendCodeKey:
Description: Object key of the frontend code in the S3 bucket
Type: String
Default: frontend.zip
#Reference to the code for cronjob script which runs in the background to check the database
CronWorkCodeKey:
Description: Object key of the lambda code in the S3 bucket
Type: String
Default: index.zip
# For Debugging purpose of EC2 to have access to Ec2 from ssh.
MyEC2KeyPair:
Description: Name of an existing EC2 KeyPair to enable SSH access
Type: AWS::EC2::KeyPair::KeyName
Default: darshil
# AWS Credential to set on to EC2, so that aws-sdk can have access to AWS services
ACCESSKEY:
Type: String
Default: ASIAYTTALVN3FNIBP36G
SECRETACCESS:
Type: String
Default: 7F6VbhmDyi1ZyrMDO2arCRI/yCaK4JhaX1Chg/m7
SESSION:
Type: String
Default: FwoGZXIvYXdzEFQaDNR5zNUmywkM3280JCLAAS/BlfJ13Y4tUhQia0Pe1OTbYZVsRoMAQTtThemUAUol3KYXIDPhrp220JQUUR5oKMcaY54Ttd7B0yA17xo0E/1SUwzYOG6zaMdSDFUUMGqzK0DAdK4TmqlzgcWyQ38hcOiFOXzAuF3mYQbs+GfaFvyd4K+NjTBQlxyHaZBf/RDHbFFD6wSUSrOwh5N0CKtBl5pmzq11zorBMm8m0GHlOVR6wksTYlmFE1FG+lX9s1OBVBgHxVpZNv/YNs4iipNVgSjFmqWmBjItoW50+uj4+Il48Vu2LWBVNYu4sEJKcxxcRl6U6nhI2MHBuyuHG9hmr8DbG26O
Resources:
# TO Store the Metadata of the uploaded files and link expiration time etc.
StorageRecordsTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: files_metadata
AttributeDefinitions:
- AttributeName: accessCode
AttributeType: S
KeySchema:
- AttributeName: accessCode
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1 # Adjust this value based on your workload
# TO Store the uploaded file for sharing to S3 Bucket.
MyS3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: term-project-storage
PublicAccessBlockConfiguration:
BlockPublicAcls: false
BlockPublicPolicy: false
IgnorePublicAcls: false
RestrictPublicBuckets: false
# TO Make file accessible when object URL is given
MyS3BucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref MyS3Bucket
PolicyDocument:
Version: "2012-10-17"
Statement:
Action:
- "s3:GetObject"
- "s3:PutObject"
Effect: Allow
Resource: !Join ["", ["arn:aws:s3:::", !Ref MyS3Bucket, "/*"]]
Principal: "*"
# Since my Application is Tempaorary file sharing app, after every minute this lambda function will be called to check the file status DynamoDB
CronWork:
Type: AWS::Lambda::Function
Properties:
FunctionName: CronWork
Runtime: nodejs18.x
Handler: index.handler
Code:
S3Bucket: !Ref CodeBucketName
S3Key: !Ref CronWorkCodeKey
Timeout: 30
Role: "arn:aws:iam::591833836406:role/LabRole"
# Event Bridge for lambda to be called at Every 1 minute
CronJobScheduler:
Type: AWS::Events::Rule
Properties:
Description: "Trigger Lambda every single minute"
ScheduleExpression: "rate(1 minute)"
State: ENABLED
Targets:
- Arn: !GetAtt CronWork.Arn
Id: CronWorkTarget
CronJobSchedulerPermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt CronWork.Arn
Action: "lambda:InvokeFunction"
Principal: events.amazonaws.com
SourceArn: !GetAtt CronJobScheduler.Arn
FeedbackSNS:
Type: AWS::SNS::Topic
Properties:
TopicName: "feedback"
DisplayName: "Feedback/Indqiries"
SnsEmailSubscription:
Type: AWS::SNS::Subscription
Properties:
TopicArn: !Ref FeedbackSNS
Protocol: email
Endpoint: Darshil.Patel@dal.ca
################################################################################
#Backend EC2 with API GATEWAY.....................................
################################################################################
MyEC2Instance:
Type: "AWS::EC2::Instance"
Properties:
ImageId: "ami-0f34c5ae932e6f0e4"
InstanceType: "t2.micro"
KeyName: !Ref MyEC2KeyPair
Tags:
- Key: Name
Value: term-project-backend
UserData:
Fn::Base64: !Sub |
#!/bin/bash
cd /home/ec2-user/
# Install Node.js 18.x using yum
curl -sL https://rpm.nodesource.com/setup_18.x | bash -
yum install -y nodejs
sudo yum install git -y
#!/bin/bash
echo export aws_access_key_id=${ACCESSKEY} >> /etc/profile
echo export aws_secret_access_key=${SECRETACCESS} >> /etc/profile
echo export aws_session_token=${SESSION} >> /etc/profile
sudo mkdir .aws
sudo chown -R ec2-user: .aws
sudo chmod -R 755 .aws
echo -e "[default]\naws_access_key_id=${ACCESSKEY}\naws_secret_access_key=${SECRETACCESS}\naws_session_token=${SESSION}" > .aws/credentials
sudo aws configure set aws_access_key_id $aws_access_key_id
sudo aws configure set aws_secret_access_key $aws_secret_access_key
sudo aws configure set region us-east-1
sudo aws configure set aws_session_token $aws_session_token
echo "[default]" >> ~/.aws/credentials
echo "aws_access_key_id=${ACCESSKEY}" >> ~/.aws/credentials
echo "aws_secret_access_key=${SECRETACCESS}" >> ~/.aws/credentials
echo "aws_session_token=${SESSION}" >> ~/.aws/credentials
sudo aws s3 cp s3://${CodeBucketName}/${BackendCodeKey} ./
# git clone https://github.com/Darshil580/term-backend.git
sudo unzip backend.zip -d /home/ec2-user/backend
cd backend
# cd term-backend/
sudo npm install
sudo npm install -g pm2
sudo pm2 install pm2-logrotate
sudo pm2 start app.js --name node-app
# sudo aws s3 cp s3://term-project-code/backend.zip ./ &
#API Gateway Name
MyApiGateway:
Type: AWS::ApiGateway::RestApi
Properties:
Name: backend-server
EndpointConfiguration:
Types:
- "REGIONAL"
#Creating a Resource called backend
MyApiResource:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref MyApiGateway
ParentId: !GetAtt MyApiGateway.RootResourceId
PathPart: "backend"
#Creating a Resource called feedback.
FeedbackResource:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref MyApiGateway
ParentId: !GetAtt MyApiGateway.RootResourceId
PathPart: "feedback"
#Creating a Resource called Statut
StatusResource:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref MyApiGateway
ParentId: !GetAtt MyApiGateway.RootResourceId
PathPart: "status"
# UploadResource:
# Type: AWS::ApiGateway::Resource
# Properties:
# RestApiId: !Ref MyApiGateway
# ParentId: !GetAtt MyApiGateway.RootResourceId
# PathPart: "upload"
# StoreResource:
# Type: AWS::ApiGateway::Resource
# Properties:
# RestApiId: !Ref MyApiGateway
# ParentId: !GetAtt MyApiGateway.RootResourceId
# PathPart: "store"
TestMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref MyApiResource
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: HTTP
IntegrationHttpMethod: GET
Uri: !Sub http://${MyEC2Instance.PublicIp}:80
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
RequestParameters:
method.request.querystring.name: false
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
# UploadMethod:
# Type: AWS::ApiGateway::Method
# Properties:
# RestApiId: !Ref MyApiGateway
# ResourceId: !Ref MyApiResource
# AuthorizationType: NONE
# HttpMethod: POST
# Integration:
# Type: HTTP
# TimeoutInMillis: 29000
# IntegrationHttpMethod: POST
# Uri: !Sub http://${MyEC2Instance.PublicIp}:80/upload
# IntegrationResponses:
# - StatusCode: 200
# ResponseTemplates:
# application/json: $input.json('$')
# ResponseParameters:
# method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
# method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
# method.response.header.Access-Control-Allow-Origin: "'*'"
# RequestTemplates:
# application/json: $input.json('$')
# RequestParameters:
# method.request.querystring.name: false
# MethodResponses:
# - ResponseParameters:
# method.response.header.Access-Control-Allow-Headers: true
# method.response.header.Access-Control-Allow-Methods: true
# method.response.header.Access-Control-Allow-Origin: true
# StatusCode: "200"
FeedbackMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref FeedbackResource
AuthorizationType: NONE
HttpMethod: POST
Integration:
Type: HTTP
IntegrationHttpMethod: POST
Uri: !Sub http://${MyEC2Instance.PublicIp}:80/publish
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
RequestTemplates:
application/json: $input.json('$')
RequestParameters:
method.request.querystring.name: false
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
StatusMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref StatusResource
AuthorizationType: NONE
HttpMethod: POST
Integration:
Type: HTTP
IntegrationHttpMethod: POST
Uri: !Sub http://${MyEC2Instance.PublicIp}:80/filecheck
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
RequestTemplates:
application/json: $input.json('$')
RequestParameters:
method.request.querystring.name: false
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
#######################################################################
#3 Option Method For each resource to handle the cors error.
#########################################################################
FeedbackOptionsMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref FeedbackResource
AuthorizationType: NONE
HttpMethod: OPTIONS
Integration:
Type: MOCK
PassthroughBehavior: "WHEN_NO_MATCH"
RequestTemplates:
"application/json": '{"statusCode": 200}'
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
BackendOptionsMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref MyApiResource
AuthorizationType: NONE
HttpMethod: OPTIONS
Integration:
Type: MOCK
TimeoutInMillis: 29000
PassthroughBehavior: "WHEN_NO_MATCH"
RequestTemplates:
"application/json": '{"statusCode": 200}'
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
StatusOptionsMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref MyApiGateway
ResourceId: !Ref StatusResource
AuthorizationType: NONE
HttpMethod: OPTIONS
Integration:
Type: MOCK
PassthroughBehavior: "WHEN_NO_MATCH"
RequestTemplates:
"application/json": '{"statusCode": 200}'
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
MethodResponses:
- ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
StatusCode: "200"
######################################################################################################
#Deployemnt of the API endpoints and OPTION API Methods decalred to handle the cors with the stage name
####################################################################################################
MyApiDeployment:
Type: AWS::ApiGateway::Deployment
DependsOn: TestMethod
Properties:
RestApiId: !Ref MyApiGateway
MyApiStage:
Type: AWS::ApiGateway::Stage
Properties:
DeploymentId: !Ref MyApiDeployment
RestApiId: !Ref MyApiGateway
StageName: prod
# UploadApiDeployment:
# Type: AWS::ApiGateway::Deployment
# DependsOn: UploadMethod
# Properties:
# RestApiId: !Ref MyApiGateway
# UploadApiStage:
# Type: AWS::ApiGateway::Stage
# Properties:
# DeploymentId: !Ref UploadApiDeployment
# RestApiId: !Ref MyApiGateway
# StageName: push
#Feedback API.............................
FeedbackApiDeployment:
Type: AWS::ApiGateway::Deployment
DependsOn:
- FeedbackMethod
# - FeedbackOptionsMethod
Properties:
RestApiId: !Ref MyApiGateway
FeedbackApiStage:
Type: AWS::ApiGateway::Stage
Properties:
DeploymentId: !Ref FeedbackApiDeployment
RestApiId: !Ref MyApiGateway
StageName: post
FeedbackOptionsApiDeployment:
Type: "AWS::ApiGateway::Deployment"
Properties:
RestApiId: !Ref MyApiGateway
DependsOn:
- FeedbackOptionsMethod
#Backend Test API.............................
BackendOptionsApiDeployment:
Type: "AWS::ApiGateway::Deployment"
Properties:
RestApiId: !Ref MyApiGateway
DependsOn:
- BackendOptionsMethod
#Status API.........
StatusOptionsApiDeployment:
Type: "AWS::ApiGateway::Deployment"
Properties:
RestApiId: !Ref MyApiGateway
DependsOn:
- StatusOptionsMethod
StatusApiDeployment:
Type: AWS::ApiGateway::Deployment
DependsOn: FeedbackMethod
Properties:
RestApiId: !Ref MyApiGateway
StatusApiStage:
Type: AWS::ApiGateway::Stage
Properties:
DeploymentId: !Ref StatusApiDeployment
RestApiId: !Ref MyApiGateway
StageName: fetch
################################################################################
#Elastic Beanstalk Fronend.....................................
################################################################################
ElasticBeanstalkApplication:
Type: AWS::ElasticBeanstalk::Application
Properties:
ApplicationName: "FileShareWebApp" # Fixed application name
ElasticBeanstalkEnvironment:
Type: AWS::ElasticBeanstalk::Environment
Properties:
ApplicationName: !Ref ElasticBeanstalkApplication
EnvironmentName: "FrontendEnvironment" # Fixed environment name
SolutionStackName: !Ref SolutionStackName
Tier:
Type: "Standard" # Web server environment tier
Name: "WebServer"
VersionLabel: !Ref SampleApplicationVersion # Using the created application version
OptionSettings:
- Namespace: "aws:elasticbeanstalk:environment"
OptionName: "ServiceRole"
Value: "arn:aws:iam::591833836406:role/LabRole" # Operations Role ARN
- Namespace: "aws:autoscaling:launchconfiguration"
OptionName: "IamInstanceProfile"
Value: "LabInstanceProfile" # Instance Profile name
- Namespace: "aws:elasticbeanstalk:environment"
OptionName: EnvironmentType
Value: "SingleInstance"
- Namespace: "aws:autoscaling:launchconfiguration"
OptionName: "InstanceType"
Value: "t3a.small" # Instance type - t3.small
- Namespace: "aws:elasticbeanstalk:application:environment"
OptionName: "REACT_APP_TEST"
Value: !Sub "https://${MyApiGateway}.execute-api.${AWS::Region}.amazonaws.com/prod/backend"
# - Namespace: "aws:elasticbeanstalk:application:environment"
# OptionName: "REACT_APP_API"
# Value: !Sub "https://${MyApiGateway}.execute-api.${AWS::Region}.amazonaws.com/push/backend"
- Namespace: "aws:elasticbeanstalk:application:environment"
OptionName: "REACT_APP_FEEDBACK"
Value: !Sub "https://${MyApiGateway}.execute-api.${AWS::Region}.amazonaws.com/post/feedback"
- Namespace: "aws:elasticbeanstalk:application:environment"
OptionName: "REACT_APP_STATUS"
Value: !Sub "https://${MyApiGateway}.execute-api.${AWS::Region}.amazonaws.com/fetch/status"
- Namespace: "aws:elasticbeanstalk:application:environment"
OptionName: "REACT_APP_EC2"
Value: !Sub "http://${MyEC2Instance.PublicIp}:80/upload"
- Namespace: "aws:elasticbeanstalk:application:environment"
OptionName: "REACT_APP_SNS_TOPIC_ARN"
Value: !Ref FeedbackSNS
OperationsRole: "arn:aws:iam::591833836406:role/LabRole" # Specify the IAM role ARN here
SampleApplicationVersion:
Type: AWS::ElasticBeanstalk::ApplicationVersion
Properties:
ApplicationName: !Ref ElasticBeanstalkApplication
Description: Sample application version
SourceBundle:
S3Bucket: !Ref CodeBucketName # Replace with your S3 bucket name
S3Key: !Ref FrontendCodeKey # Replace with your S3 key
Outputs:
ElasticBeanstalkURL:
Description: URL of the Elastic Beanstalk environment
Value: !Join
- ""
- - "http://"
- !GetAtt ElasticBeanstalkEnvironment.EndpointURL