-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathbbb-on-aws-root.template.yaml
769 lines (750 loc) · 24.1 KB
/
bbb-on-aws-root.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
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
AWSTemplateFormatVersion: '2010-09-09'
Description: >
This Cloudformation Template deploys a scalable Big Blue Button Web Application Infrastructure.
Disclaimber: Not for Production Use. Demo and Testing purposes only.
Last Modified: 02 April 2023
Authors: David Surey <[email protected]>
Parameters:
BBBVPCDEF:
Description: Please enter the IP range (CIDR notation) for the BBB VPC
Type: String
Default: 10.1.0.0/16
BBBApplicationSubnets:
Description: Comma separated list of the private subnets for instances
Type: CommaDelimitedList
Default: "10.1.5.0/24,10.1.6.0/24,10.1.7.0/24"
BBBDatastoreSubnets:
Description: Comma separated list of the private subnets for Ddtabases
Type: CommaDelimitedList
Default: "10.1.8.0/24,10.1.9.0/24,10.1.10.0/24"
BBBApplicationVersion:
Description: Version of the Big Blue Button Application
Type: String
Default: focal-270
AllowedValues:
- focal-260
- focal-270
- focal-300
BBBApplicationInstanceAMIParameter:
Description: Ubuntu Version to be deployed for Application Instances
Default: "/aws/service/canonical/ubuntu/server/20.04/stable/current/amd64/hvm/ebs-gp2/ami-id"
Type: 'AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>'
BBBECSMaxInstances:
Type: Number
Description: Maximum number of ECS Worker Instances
Default: 3
BBBECSMinInstances:
Type: Number
Description: Minimum number of ECS Worker Instances
Default: 1
BBBECSDesiredInstances:
Type: Number
Description: Desired number of ECS Worker Instances
Default: 1
BBBApplicationMaxInstances:
Type: Number
Description: Maximum number of appserver instances
Default: 1
BBBApplicationMinInstances:
Type: Number
Description: Minimum number of appserver instances
Default: 1
BBBApplicationDesiredInstances:
Type: Number
Description: Desired number of appserver instances
Default: 1
BBBOperatorEMail:
Description: EMail address to notify if there are any operational issues
Type: String
AllowedPattern: "([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)"
ConstraintDescription: must be a valid email address.
Default: [email protected]
BBBDBEngineVersion:
Description: Database engine version for Aurora PostgreSQL
Type: String
Default: 14.3
BBBECSInstanceType:
Description: Compute type for ECS Cluster (FARGATE or EC2 instance type, x86_64 only)
Type: String
Default: fargate
AllowedPattern: ^(fargate|(t2|t3|t3a|m4|m5|m5a|m6i|c4|c5|c5a|c6i|r4|r5|r5a|r6i)\.(medium|large|xlarge|2xlarge|4xlarge|8xlarge|12xlarge|16xlarge|24xlarge))$
BBBApplicationInstanceType:
Description: Instance type for BBB Application Server (x86_64 only)
Type: String
Default: c5.2xlarge
AllowedPattern: ^(t3|t3a|m5|m5a|m5n|m5zn|m6i|m6a|m6in|c5|c5a|c5n|c6i|c6a|c6in|r5|r5a|r5b|r5n|r6i|r6a|r6in)\.(medium|large|xlarge|2xlarge|4xlarge|8xlarge|12xlarge|16xlarge|24xlarge)$
BBBApplicationDataVolumeSize:
Description: Size of the application instance data volume
Type: Number
Default: 50
BBBApplicationRootVolumeSize:
Description: Size of the application instance data volume
Type: Number
Default: 20
BBBDBInstanceType:
Description: DB instance type for Aurora PostgreSQL
Type: String
Default: db.serverless
AllowedPattern: ^(db\.(serverless|(t3|t4g|r5|r6g|r6i|r7g)\.(medium|large|xlarge|2xlarge|4xlarge|8xlarge|12xlarge|16xlarge|24xlarge)))$
BBBServerlessAuroraMinCapacity:
Description: The minimum capacity for the Amazon Aurora Serverless Cluster.
Type: Number
Default: 2
BBBServerlessAuroraMaxCapacity:
Description: The maximum capacity for the Amazon Aurora Serverless Cluster
Type: Number
Default: 4
BBBCACHEDBInstanceType:
Description: Instance type for Amazon ElastiCache
Type: String
Default: cache.t4g.micro
AllowedPattern: ^(cache\.(t3|t4g|m6g|m7g|r6g|r7g)\.(micro|small|medium|large|xlarge|2xlarge|4xlarge|8xlarge|12xlarge|16xlarge))$
BBBEnvironmentName:
Description: An environment name that is prefixed to resource names
Type: String
Default: bbbonaws
BBBgreenlightImageTag:
Description: Greenlight docker image identifier
Type: String
Default: "v3"
BBBScaleliteApiImageTag:
Description: Scalelite API docker image identifier
Type: String
Default: "v1-api"
BBBScaleliteNginxImageTag:
Description: Scalelite NGINX docker image identifier
Type: String
Default: "v1-nginx"
BBBScalelitePollerImageTag:
Description: Scalelite Poller docker image identifier
Type: String
Default: "v1-poller"
BBBScaleliteImporterImageTag:
Description: Scalelite Importer docker image identifier
Type: String
Default: "v1-recording-importer"
BBBCacheAZMode:
Description: Redis Cache AZ Mode
Type: String
Default: single-az
AllowedValues:
- single-az
- cross-az
BBBHostedZone:
Description: Hosted zone in which the DNS entries should be created
Type: String
Default: ""
BBBStackBucketStack:
Description: S3 Bucket Stack that contains scripts and sources
Type: String
BBBECRStack:
Description: ECR Image Registry Stack
Type: String
BBBDomainName:
Description: Base domain name used for the instance
Type: String
BBBGreenlightMemory:
Description: Memory constraints for Greenlight container
Type: Number
Default: 1024
BBBGreenlightCPU:
Description: CPU constraints for Greenlight container
Type: Number
Default: 512
BBBScaleliteMemory:
Description: Memory constraints for Scalelite Fargate Task
Type: Number
Default: 2048
BBBScaleliteCPU:
Description: CPU constraints for Scalelite Fargate Task
Type: Number
Default: 1024
BBBGreenlightMinReplicas:
Description: Minimum amount of greenlight containers available
Type: Number
Default: 1
BBBGreenlightMaxReplicas:
Description: Maximum amount of greenlight containers available
Type: Number
Default: 3
BBBGreenlightDesiredReplicas:
Description: Desired amount of greenlight containers available
Type: Number
Default: 1
BBBScaleliteMinReplicas:
Description: Minimum amount of Scalelite containers available
Type: Number
Default: 1
BBBScaleliteMaxReplicas:
Description: Maximum amount of Scalelite containers available
Type: Number
Default: 3
BBBScaleliteDesiredReplicas:
Description: Desired amount of Scalelite containers available
Type: Number
Default: 1
BBBSesRegion:
Description: Set the Region for the SES Service if deployment in a non-SES Region
Type: String
Default: "AWS::NoValue"
BBBSESValidated:
Description: If the SES Domain is already validated manually we do not need the automation
Type: String
Default: false
AllowedValues: [ true, false ]
BBBACMCertArn:
Description: Set this parameter if you want to reuse an existing ACM certificate for your deployment
Type: String
Default: "AWS::NoValue"
BBBFrontendType:
Type: String
Default: Greenlight
AllowedValues:
- Greenlight
- External
BBBNumberOfAZs:
Type: Number
Default: 2
AllowedValues: [1, 2, 3]
Description: Number of Availability Zones to use
BBBUsePublicApplicationIP:
Type: String
AllowedValues:
- ENABLED
- DISABLED
Default: ENABLED
Conditions:
BBBExistingVPC: !And [ !Not [ !Equals [ !Ref BBBVPCDEF, "" ]], !Equals [ !Select [ 0, !Split [ vpc-, !Ref BBBVPCDEF ]], "" ]]
BBBNewVPC: !Not [ Condition: BBBExistingVPC ]
BBBSESNotValidated: !Equals [false, !Ref BBBSESValidated]
BBBGreenlight: !Equals [!Ref BBBFrontendType, Greenlight]
Resources:
BBBNotificationTopic:
Type: AWS::SNS::Topic
Properties:
KmsMasterKeyId: !Ref BBBNotificationEncKey
Subscription:
- Endpoint:
Ref: BBBOperatorEMail
Protocol: email
BBBNotificationEncKey:
Type: AWS::KMS::Key
Properties:
Description: BBB-Internal-SNS Encryption Key
KeyPolicy:
Version: 2012-10-17
Id: allow-root-access-to-key
Statement:
- Sid: allow-root-to-delegate-actions
Effect: Allow
Principal:
AWS: !Sub arn:aws:iam::${AWS::AccountId}:root
Action:
- kms:*
Resource: '*'
- Sid: allow-cloudwatch-to-use-key
Effect: Allow
Principal:
Service: cloudwatch.amazonaws.com
Action:
- kms:Decrypt
- kms:GenerateDataKey*
Resource: '*'
- Sid: allow-ses-to-use-key
Effect: Allow
Principal:
Service: ses.amazonaws.com
Action:
- kms:Decrypt
- kms:GenerateDataKey*
Resource: '*'
- Sid: Allow access through SNS for all principals in the account that are authorized
to use SNS
Effect: Allow
Principal:
AWS: "*"
Action:
- kms:Decrypt
- kms:GenerateDataKey*
- kms:CreateGrant
- kms:ListGrants
- kms:DescribeKey
Resource: "*"
Condition:
StringEquals:
kms:ViaService: sns.eu-central-1.amazonaws.com
kms:CallerAccount: !Sub "${AWS::AccountId}"
- Sid: Allow direct access to key metadata to the account
Effect: Allow
Principal:
AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root"
Action:
- kms:Describe*
- kms:Get*
- kms:List*
- kms:RevokeGrant
Resource: "*"
BBBSystemLogsGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Join ["", ["/", !Ref "AWS::StackName", "/systemlogs"]]
RetentionInDays: 7
BBBApplicationLogsGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Join ["", ["/", !Ref "AWS::StackName", "/applicationlogs"]]
RetentionInDays: 7
BBBSESProviderStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-ses.template.yaml"
Parameters:
BBBHostedZone: !Ref BBBHostedZone
Tags:
- Key: Name
Value:
Fn::Sub: BBBSESProviderStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBNetworkStack:
Type: AWS::CloudFormation::Stack
Condition: BBBNewVPC
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-network.template.yaml"
Parameters:
BBBVPCDEF:
Ref: BBBVPCDEF
BBBNumberOfAZs: !Ref BBBNumberOfAZs
Tags:
- Key: Name
Value:
Fn::Sub: BBBNetworkStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBSecurityGroupStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-securitygroups.template.yaml"
Parameters:
BBBVPC:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBVPC
- Ref: BBBVPCDEF
BBBECSInstanceType:
Ref: BBBECSInstanceType
BBBFrontendType:
Ref: BBBFrontendType
Tags:
- Key: Name
Value:
Fn::Sub: BBBSecurityGroupStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBStorageStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-storage.template.yaml"
Parameters:
BBBNumberOfAZs: !Ref BBBNumberOfAZs
BBBDatastoreSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBDatastoreSubnets
- Fn::Join:
- ","
- Ref: BBBDatastoreSubnets
BBBSharedStorageSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBSharedStorageSecurityGroup
Tags:
- Key: Name
Value:
Fn::Sub: BBBStorageStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBDatabaseStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-database.template.yaml"
Parameters:
BBBNotificationTopic:
Ref: BBBNotificationTopic
BBBDBInstanceType:
Ref: BBBDBInstanceType
BBBServerlessAuroraMinCapacity:
Ref: BBBServerlessAuroraMinCapacity
BBBServerlessAuroraMaxCapacity:
Ref: BBBServerlessAuroraMaxCapacity
BBBDatastoreSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBDatastoreSubnets
- Fn::Join:
- ","
- Ref: BBBDatastoreSubnets
BBBDBEngineVersion:
Ref: BBBDBEngineVersion
BBBDBSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBDBSecurityGroup
Tags:
- Key: Name
Value:
Fn::Sub: BBBDatabaseStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBCacheDBStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-cachedb.template.yaml"
Parameters:
BBBNotificationTopic:
Ref: BBBNotificationTopic
BBBCACHEDBInstanceType:
Ref: BBBCACHEDBInstanceType
BBBDatastoreSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBDatastoreSubnets
- Fn::Join:
- ","
- Ref: BBBDatastoreSubnets
BBBCACHEDBSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBCACHEDBSecurityGroup
Tags:
- Key: Name
Value:
Fn::Sub: BBBCACHEDDBStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBECSStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-ecs.template.yaml"
Parameters:
BBBNotificationTopic:
Ref: BBBNotificationTopic
BBBApplicationSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBApplicationSubnets
- Fn::Join:
- ","
- Ref: BBBApplicationSubnets
BBBECSInstanceType:
Ref: BBBECSInstanceType
BBBECSTaskSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBECSTaskSecurityGroup
BBBECSMaxInstances:
Ref: BBBECSMaxInstances
BBBECSMinInstances:
Ref: BBBECSMinInstances
BBBECSDesiredInstances:
Ref: BBBECSDesiredInstances
Tags:
- Key: Name
Value:
Fn::Sub: BBBECSStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBAppStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-application.template.yaml"
Parameters:
BBBApplicationVersion:
Ref: BBBApplicationVersion
BBBStackBucketStack:
Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
BBBOperatorEMail:
Ref: BBBOperatorEMail
BBBApplicationInstanceAMI:
Ref: BBBApplicationInstanceAMIParameter
BBBNotificationTopic:
Ref: BBBNotificationTopic
BBBSystemLogsGroupArn:
Fn::GetAtt:
- BBBSystemLogsGroup
- Arn
BBBSystemLogsGroup:
Ref: BBBSystemLogsGroup
BBBApplicationLogsGroupArn:
Fn::GetAtt:
- BBBApplicationLogsGroup
- Arn
BBBApplicationLogsGroup:
Ref: BBBApplicationLogsGroup
BBBApplicationSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBApplicationSecurityGroup
BBBECSTaskSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBECSTaskSecurityGroup
BBBApplicationSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBApplicationSubnets
- Fn::Join:
- ","
- Ref: BBBApplicationSubnets
BBBApplicationInstanceType:
Ref: BBBApplicationInstanceType
BBBApplicationDataVolumeSize:
Ref: BBBApplicationDataVolumeSize
BBBApplicationRootVolumeSize:
Ref: BBBApplicationRootVolumeSize
BBBApplicationMaxInstances:
Ref: BBBApplicationMaxInstances
BBBApplicationMinInstances:
Ref: BBBApplicationMinInstances
BBBApplicationDesiredInstances:
Ref: BBBApplicationDesiredInstances
BBBSharedStorageFS:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageFS
BBBSharedStorageAPspool:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageAPspool
BBBHostedZone:
Ref: BBBHostedZone
BBBDomainName:
Ref: BBBDomainName
BBBECSCluster:
Fn::GetAtt:
- BBBECSStack
- Outputs.BBBECSCluster
BBBScaleliteTaskExecutionRole:
Fn::GetAtt:
- BBBFontendAppsStack
- Outputs.BBBScaleliteTaskExecutionRole
BBBECSInstanceType:
Ref: BBBECSInstanceType
Tags:
- Key: Name
Value:
Fn::Sub: BBBApplicationStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
BBBFontendAppsStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Fn::Join:
- ""
- - "https://s3.amazonaws.com/"
- Fn::ImportValue: !Sub "${BBBStackBucketStack}-BBBStackBucket"
- "/bbb-on-aws-frontendapps.template.yaml"
Parameters:
BBBVPC:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBVPC
- Ref: BBBVPCDEF
BBBRDSDBConnectionSecret:
Fn::GetAtt:
- BBBDatabaseStack
- Outputs.BBBRDSDBConnectionSecret
BBBSESValidated:
Ref: BBBSESValidated
BBBECSCluster:
Fn::GetAtt:
- BBBECSStack
- Outputs.BBBECSCluster
BBBApplicationSubnets:
Fn::If:
- BBBNewVPC
- Fn::GetAtt:
- BBBNetworkStack
- Outputs.BBBApplicationSubnets
- Fn::Join:
- ","
- Ref: BBBApplicationSubnets
BBBUsePublicApplicationIP:
Ref: BBBUsePublicApplicationIP
BBBFrontendELBSecurityGroup:
Fn::If:
- BBBGreenlight
- Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBFrontendELBSecurityGroup
- "AWS::NoValue"
BBBScaleliteELBSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBScaleliteELBSecurityGroup
BBBACMCertArn:
Ref: BBBACMCertArn
BBBSESProviderArn:
Fn::GetAtt:
- BBBSESProviderStack
- Outputs.BBBSESProviderArn
BBBSMTPSecretProviderArn:
Fn::GetAtt:
- BBBSESProviderStack
- Outputs.BBBSMTPSecretProviderArn
BBBScaleliteRepositoryUri:
Fn::ImportValue: BBBScaleliteRepositoryUri
BBBGreenlightRepositoryUri:
Fn::ImportValue: BBBGreenlightRepositoryUri
BBBNotificationTopic:
Ref: BBBNotificationTopic
BBBgreenlightImageTag:
Ref: BBBgreenlightImageTag
BBBScaleliteApiImageTag:
Ref: BBBScaleliteApiImageTag
BBBScaleliteNginxImageTag:
Ref: BBBScaleliteNginxImageTag
BBBScalelitePollerImageTag:
Ref: BBBScalelitePollerImageTag
BBBScaleliteImporterImageTag:
Ref: BBBScaleliteImporterImageTag
BBBCacheDBAddress:
Fn::GetAtt:
- BBBCacheDBStack
- Outputs.BBBCacheDBAddress
BBBCacheDBPort:
Fn::GetAtt:
- BBBCacheDBStack
- Outputs.BBBCacheDBPort
BBBHostedZone:
Ref: BBBHostedZone
BBBDomainName:
Ref: BBBDomainName
BBBGreenlightMemory:
Ref: BBBGreenlightMemory
BBBGreenlightCPU:
Ref: BBBGreenlightCPU
BBBScaleliteMemory:
Ref: BBBScaleliteMemory
BBBScaleliteCPU:
Ref: BBBScaleliteCPU
BBBGreenlightMinReplicas:
Ref: BBBGreenlightMinReplicas
BBBGreenlightMaxReplicas:
Ref: BBBGreenlightMaxReplicas
BBBGreenlightDesiredReplicas:
Ref: BBBGreenlightDesiredReplicas
BBBScaleliteMinReplicas:
Ref: BBBScaleliteMinReplicas
BBBScaleliteMaxReplicas:
Ref: BBBScaleliteMaxReplicas
BBBScaleliteDesiredReplicas:
Ref: BBBScaleliteDesiredReplicas
BBBSharedStorageFS:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageFS
BBBSharedStorageAPspool:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageAPspool
BBBSharedStorageAPpublished:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageAPpublished
BBBSharedStorageAPunpublished:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageAPunpublished
BBBSharedStorageAPrecordings:
Fn::GetAtt:
- BBBStorageStack
- Outputs.BBBSharedStorageAPrecordings
BBBSesRegion:
Ref: BBBSesRegion
BBBOperatorEMail:
Ref: BBBOperatorEMail
BBBECSInstanceType:
Ref: BBBECSInstanceType
BBBECSTaskSecurityGroup:
Fn::GetAtt:
- BBBSecurityGroupStack
- Outputs.BBBECSTaskSecurityGroup
BBBApplicationLogsGroup:
Ref: BBBApplicationLogsGroup
BBBFrontendType:
Ref: BBBFrontendType
Tags:
- Key: Name
Value:
Fn::Sub: BBBFrontendApplicationStack-${BBBEnvironmentName}
- Key: Environment
Value: !Ref BBBEnvironmentName
Outputs:
BBBNotificationTopic:
Description: The SNS Topic for Operational Messages
Value:
Ref: BBBNotificationTopic
BBBSystemLogsGroup:
Description: The System LogGroup for Cloudwatch
Value:
Ref: BBBSystemLogsGroup
BBBApplicationLogsGroup:
Description: The Application LogGroup for Cloudwatch
Value:
Ref: BBBApplicationLogsGroup