-
Notifications
You must be signed in to change notification settings - Fork 8
/
template.yaml
715 lines (656 loc) · 20.8 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
"MRI Scheduler Project \n"
Parameters:
CidrBlockVpcParameter:
Description: CIDR block allocated for
Type: 'String'
Default: 10.0.0.0/16
PrivateSubnetAParameter:
Description: CIDR block allocated for Private Subnet A
Type: 'String'
Default: 10.0.1.0/24
PublicSubnetAParameter:
Description: CIDR block allocated for Private Subnet A
Type: 'String'
Default: 10.0.2.0/24
DBInstanceTypeParameter:
Description: EC2 instance type for the database
Type: String
Default: t3.medium
AllowedValues: [t2.medium, t2.large, t3.medium, t3.large]
ConstraintDescription: must be a valid EC2 instance type.
AMIID:
Type: 'AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>'
Default: '/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2'
Globals:
Function:
AutoPublishAlias: live
Handler: index.handler
MemorySize: 256
Runtime: python3.7
Timeout: 20
Tracing: Active
Resources:
# Roles
IAMEC2InstanceRole:
Type: 'AWS::IAM::Role'
Properties:
Description: The SSM Instance Profile
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
Action:
- 'sts:AssumeRole'
Policies:
- PolicyName: ssmPutParameter
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- 'ssm:PutParameter'
Resource: !Sub 'arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/mri*'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonEC2RoleforSSM
- arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore
IAMEC2InstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
InstanceProfileName: AWSEC2SSMProfile
Roles:
- !Ref IAMEC2InstanceRole
# VPC
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: !Ref CidrBlockVpcParameter
EnableDnsSupport: true
EnableDnsHostnames: true
InstanceTenancy: default
Tags:
- Key: Name
Value: !Join ['', [!Ref "AWS::StackName", "-VPC" ]]
# Internet Gateway
InternetGateway:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- Key: Name
Value: !Join ['', [!Ref "AWS::StackName", "-InternetGateway" ]]
VpcInternetGatewayAttchment:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
VpcId: !Ref VPC
InternetGatewayId: !Ref InternetGateway
# Subnets
PrivateSubnetA:
Type: AWS::EC2::Subnet
Properties:
VpcId: !Ref VPC
CidrBlock: !Ref PrivateSubnetAParameter
AvailabilityZone: !Select [0, !GetAZs '']
Tags:
- Key: Name
Value: Private Subnet A
PublicSubnetA:
Type: AWS::EC2::Subnet
Properties:
VpcId: !Ref VPC
CidrBlock: !Ref PublicSubnetAParameter
AvailabilityZone: !Select [0, !GetAZs '']
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-PublicSubnet-A
DataSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Allow traffic to data resources
VpcId: !Ref VPC
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 5432
ToPort: 5432
CidrIp: !Ref PrivateSubnetAParameter
- IpProtocol: tcp
FromPort: 22
ToPort: 22
CidrIp: !Ref PublicSubnetAParameter
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-DataSecurityGroup
# Route Tables
PrivateRouteTableA:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: Private Route Table A
PublicRouteTableA:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: Public Route Table A
# Routes
PublicRouteA:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PublicRouteTableA
DestinationCidrBlock: 0.0.0.0/0
GatewayId: !Ref InternetGateway
PrivateRouteA:
Type: 'AWS::EC2::Route'
Properties:
RouteTableId: !Ref PrivateRouteTableA
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NATGateway
# Attach the subnets to route tables
PublicSubnetARouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PublicSubnetA
RouteTableId: !Ref PublicRouteTableA
PrivateSubnetARouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PrivateSubnetA
RouteTableId: !Ref PrivateRouteTableA
# NAT Gateway:
NATGateway:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt ElasticIPAddress.AllocationId
SubnetId: !Ref PublicSubnetA
Tags:
- Key: Name
Value: !Sub NAT-${AWS::StackName}
ElasticIPAddress:
Type: AWS::EC2::EIP
Properties:
Domain: VPC
AccessLogs:
Type: AWS::Logs::LogGroup
DatabaseEC2Instance:
Type: AWS::EC2::Instance
Properties:
ImageId: !Ref AMIID
InstanceType: !Ref DBInstanceTypeParameter
IamInstanceProfile: !Ref IAMEC2InstanceProfile
NetworkInterfaces:
- GroupSet:
- Ref: "DataSecurityGroup"
SubnetId:
Ref: "PrivateSubnetA"
AssociatePublicIpAddress: false
DeviceIndex: "0"
BlockDeviceMappings:
- DeviceName: /dev/xvda
Ebs:
VolumeType: gp3
VolumeSize: 80
Encrypted: true
DeleteOnTermination: true
UserData:
Fn::Base64: !Sub |
#!/bin/bash -xe
cd /tmp
alias cp="cp -f"
sudo yum -y --security update
sudo yum -y update aws-cli
sudo yum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm
sudo amazon-linux-extras install postgresql10 vim epel -y
sudo yum install -y git jq postgresql-server postgresql-devel
sudo /usr/bin/postgresql-setup --initdb
sudo systemctl enable postgresql
sudo sed -i "s|#listen_addresses = 'localhost'|listen_addresses = '*'|g" /var/lib/pgsql/data/postgresql.conf
ORIG="host all all 127.0.0.1/32 ident"
DEST="host all all 0.0.0.0/0 md5"
sudo sed -i "s|$ORIG|$DEST|g" /var/lib/pgsql/data/pg_hba.conf
AWSREGION=$(curl http://169.254.169.254/latest/dynamic/instance-identity/document | jq -r .region)
aws configure set default.region $AWSREGION
DBUSER=$(aws ssm get-parameter --name "/mri-sched/dbuser_ec2" --with-decryption --query Parameter.Value --output text)
DBPWD=$(aws ssm get-parameter --name "/mri-sched/dbpwd_ec2" --with-decryption --query Parameter.Value --output text)
sudo systemctl start postgresql
sudo -u postgres psql -c "create database rules;"
sudo -u postgres psql -c "create role $DBUSER;"
sudo -u postgres psql -c "alter role $DBUSER with login;"
sudo -u postgres psql -c "alter user $DBUSER with password '$DBPWD';"
sudo -u postgres psql -c "grant all privileges on database rules to $DBUSER;"
sudo git clone https://github.com/UBC-CIC/vch-mri.git
cd vch-mri
sudo cp ./src/backend/csv/thesaurus_medical.ths /usr/share/pgsql/tsearch_data/thesaurus_medical.ths
sudo -u postgres psql -f ./src/backend/init_db.sql
sudo -u postgres psql -d rules -c "GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO $DBUSER;"
sudo -u postgres psql -d rules -c "GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO $DBUSER;"
sudo -u postgres psql -d rules -c "GRANT ALL PRIVILEGES ON ALL FUNCTIONS IN SCHEMA public TO $DBUSER;"
sudo systemctl restart postgresql
LOCALHOST=$(curl http://169.254.169.254/latest/meta-data/local-hostname)
aws ssm put-parameter --name "/mri-sched/dbserver_ec2" --type "SecureString" --value "$LOCALHOST" --overwrite
PUBLICHOST=$(curl http://169.254.169.254/latest/meta-data/public-hostname)
aws ssm put-parameter --name "/mri-sched/dbserver_ec2_public" --type "SecureString" --value "$PUBLICHOST" --overwrite
INSTANCEID=$(curl http://169.254.169.254/latest/meta-data/instance-id)
aws ssm put-parameter --name "/mri-sched/ec2" --value "$INSTANCEID" --type SecureString --overwrite
aws ssm put-parameter --name "/mri-sched/dbname_ec2" --value "rules" --type SecureString --overwrite
sudo systemctl start amazon-ssm-agent
Tags:
- Key: 'Name'
Value: 'MriPostgresDB'
- Key: SSMManaged
Value: "Yes"
HttpApi:
Type: AWS::Serverless::HttpApi
Properties:
AccessLogSettings:
DestinationArn: !GetAtt AccessLogs.Arn
Format: $context.requestId $context.requestTime $context.path $context.status $context.responseLatency $context.integrationLatency
DefaultRouteSettings:
ThrottlingBurstLimit: 200
FailOnWarnings: True
CorsConfiguration:
AllowHeaders:
- "*"
AllowMethods:
- "*"
AllowOrigins:
- "*"
ExposeHeaders:
- "*"
ThesaurusFileBucket:
Type: AWS::S3::Bucket
copyFile:
Type: AWS::SSM::Document
Properties:
Content:
schemaVersion: '2.2'
description: 'Run a script to copy file from S3 onto Linux Instance.'
parameters:
fileName:
type: String
description: "(Required) Name of file"
s3Key:
type: String
description: "(Required) S3 Key"
destPath:
type: String
description: "(Required) EC2 instance ID"
bucket:
type: String
description: "(Required) S3 bucket name"
mainSteps:
- action: aws:runShellScript
name: runCommands
inputs:
timeoutSeconds: '60'
runCommand:
- "aws s3 cp s3://{{bucket}}/{{fileName}} {{destPath}}{{fileName}}"
DocumentType: Command
Name: 'copyFile'
SpellcheckerLayer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Spell Checker
ContentUri: ./src/backend/layers/spellchecker.zip
CompatibleRuntimes:
- python3.8
- python3.7
- python3.6
RetentionPolicy: Delete
Psycopg2Layer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Psycopg2 Library
ContentUri: ./src/backend/layers/psycopg2.zip
CompatibleRuntimes:
- python3.8
- python3.7
- python3.6
RetentionPolicy: Delete
PostgresLayer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Postgres Custom Functions
ContentUri: ./src/backend/layers/postgresql.zip
CompatibleRuntimes:
- python3.8
- python3.7
- python3.6
RetentionPolicy: Delete
Preprocess:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/preprocess
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /parser
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref SpellcheckerLayer
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/ComprehendFullAccess
- arn:aws:iam::aws:policy/ComprehendMedicalFullAccess
- SSMParameterReadPolicy:
ParameterName: "mri*"
- LambdaInvokePolicy:
FunctionName:
!Ref RuleProcessing
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
Environment:
Variables:
RULE_PROCESSING_LAMBDA: !Ref RuleProcessing
RuleProcessing:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/rule_processing
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
QueryRules:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/query_rules_table
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /rules
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
- LambdaInvokePolicy:
FunctionName:
!Ref UpdateWeights
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
Environment:
Variables:
UPDATE_WEIGHTS_LAMBDA: !Ref UpdateWeights
QuerySpellchecker:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/query_spellchecker
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /spell
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
QueryConjunctions:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/query_conjunctions
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /conjunctions
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
QueryWeights:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/query_weights
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /weights
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
- LambdaInvokePolicy:
FunctionName:
!Ref UpdateWeights
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
Environment:
Variables:
UPDATE_WEIGHTS_LAMBDA: !Ref UpdateWeights
QuerySpecialtyTags:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/query_specialty_tags
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /tags
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
UpdateWeights:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/update_word_weights
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
DataResults:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/results
Events:
ExplicitApi: # warning: creates a public endpoint
Type: HttpApi
Properties:
ApiId: !Ref HttpApi
Method: Post
Path: /results
TimeoutInMillis: 29000
PayloadFormatVersion: "2.0"
RouteSettings:
ThrottlingBurstLimit: 100
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
Thesaurus:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/backend/lambdas/thesaurus
Events:
FileUpload:
Type: S3
Properties:
Bucket: !Ref ThesaurusFileBucket
Events: s3:ObjectCreated:*
Layers:
- !Ref Psycopg2Layer
- !Ref PostgresLayer
Policies:
- SSMParameterReadPolicy:
ParameterName: "mri*"
- S3ReadPolicy:
BucketName: '*'
- arn:aws:iam::aws:policy/AmazonSSMFullAccess
- arn:aws:iam::aws:policy/AWSResourceAccessManagerFullAccess
VpcConfig:
SecurityGroupIds:
- !Ref DataSecurityGroup
SubnetIds:
- !Ref PrivateSubnetA
Environment:
Variables:
DEST_PATH: "/usr/share/pgsql/tsearch_data/" # Path to shared postgresql directory
SEND_COMMAND_NAME: !Ref copyFile
SSM_PATH: "/mri-sched/ec2"
HttpParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /mri-sched/apiid
Type: String
Value:
!Ref HttpApi
Description: !Sub HTTP API Domain for mri-sched
lambdaThesaurusParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /mri-sched/lambdathesaurusarn
Type: String
Value:
!GetAtt Thesaurus.Arn
Description: LambdaArn Thesaurus
lambdaUpdateWeightsParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /mri-sched/lambdaupdateweightsarn
Type: String
Value:
!GetAtt UpdateWeights.Arn
Description: LambdaArn UpdateWeights
Outputs:
Preprocess:
Value: !GetAtt Preprocess.Arn
RuleProcessing:
Value: !GetAtt RuleProcessing.Arn
QueryRules:
Value: !GetAtt QueryRules.Arn
QuerySpellchecker:
Value: !GetAtt QuerySpellchecker.Arn
QueryConjunctions:
Value: !GetAtt QueryConjunctions.Arn
QueryWeights:
Value: !GetAtt QueryWeights.Arn
UpdateWeights:
Value: !GetAtt UpdateWeights.Arn
DataResults:
Value: !GetAtt DataResults.Arn
HttpApiUrl:
Description: URL of your API endpoint
Value:
Fn::Sub: 'https://${HttpApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/'
VPC:
Description: VPC ID
Value: !Ref VPC
Export:
Name: !Sub ${AWS::StackName}-vpc-id
PrivateSubnetA:
Description: Private Subnet A
Value: !Ref PrivateSubnetA
Export:
Name: !Sub ${AWS::StackName}-PrivateSubnetA
PublicSubnetA:
Description: Public Subnet A
Value: !Ref PublicSubnetA
Export:
Name: !Sub ${AWS::StackName}-PublicSubnetA
DataSecurityGroup:
Description: Allow traffic to data subnets
Value: !Ref DataSecurityGroup
Export:
Name: !Sub ${AWS::StackName}-DataSecurityGroup