This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathquickstart-jira-dc.template.yaml
1643 lines (1624 loc) · 58.7 KB
/
quickstart-jira-dc.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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
AWSTemplateFormatVersion: 2010-09-09
Description: 'Atlassian Jira Data Center. (qs-1qup6ra3c)'
Metadata:
QuickStartDocumentation:
EntrypointName: "Launch into an existing VPC"
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: Jira setup
Parameters:
- JiraProduct
- JiraVersion
- Label:
default: Cluster nodes
Parameters:
- CloudWatchIntegration
- ClusterNodeInstanceType
- ClusterNodeMax
- ClusterNodeMin
- ClusterNodeVolumeSize
- DeploymentAutomationRepository
- DeploymentAutomationBranch
- DeploymentAutomationPlaybook
- DeploymentAutomationCustomParams
- DeploymentAutomationKeyName
- Label:
default: Database
Parameters:
- DBEngine
- DBEngineVersion
- DBInstanceClass
- DBIops
- DBMasterUserPassword
- DBMultiAZ
- DBPassword
- DBStorage
- DBStorageEncrypted
- DBStorageType
- Label:
default: Bastion host utilization
Parameters:
- BastionHostRequired
- KeyPairName
- Label:
default: Networking
Parameters:
- InternetFacingLoadBalancer
- CidrBlock
- SSLCertificateARN
- Label:
default: DNS (Optional)
Parameters:
- CustomDnsName
- HostedZone
- Label:
default: Application Tuning (Optional)
Parameters:
- TomcatContextPath
- CatalinaOpts
- JvmHeapOverride
- DBPoolMaxSize
- DBPoolMinSize
- DBMaxIdle
- DBMaxWaitMillis
- DBMinEvictableIdleTimeMillis
- DBMinIdle
- DBRemoveAbandoned
- DBRemoveAbandonedTimeout
- DBTestOnBorrow
- DBTestWhileIdle
- DBTimeBetweenEvictionRunsMillis
- MailEnabled
- TomcatAcceptCount
- TomcatConnectionTimeout
- TomcatDefaultConnectorPort
- TomcatEnableLookups
- TomcatMaxThreads
- TomcatMinSpareThreads
- TomcatProtocol
- TomcatRedirectPort
- Label:
default: AWS Quick Start Configuration
Parameters:
- QSS3BucketName
- QSS3KeyPrefix
- ExportPrefix
ParameterLabels:
CatalinaOpts:
default: Catalina options
CidrBlock:
default: Permitted IP range
CloudWatchIntegration:
default: Enable CloudWatch integration
ClusterNodeMax:
default: Maximum number of cluster nodes
ClusterNodeMin:
default: Minimum number of cluster nodes
ClusterNodeInstanceType:
default: Cluster node instance type
ClusterNodeVolumeSize:
default: Cluster node instance volume size
CustomDnsName:
default: Existing DNS name
DBEngine:
default: The database engine to deploy with
DBEngineVersion:
default: The database engine version to use
DBInstanceClass:
default: Database instance class
DBIops:
default: RDS Provisioned IOPS
DBMasterUserPassword:
default: Master (admin) password *
DBMaxIdle:
default: DB Maximum Idle
DBMaxWaitMillis:
default: DB Maximum Wait
DBMinEvictableIdleTimeMillis:
default: DB Minimum Evictable Idle Time
DBMinIdle:
default: DB Minimum Idle Connections
DBMultiAZ:
default: Enable RDS Multi-AZ deployment
DBPassword:
default: Application user database password *
DBPoolMaxSize:
default: DB Pool Maximum Size
DBPoolMinSize:
default: DB Pool Minimum Size
DBRemoveAbandoned:
default: DB Remove Abandoned?
DBRemoveAbandonedTimeout:
default: DB Remove Abandoned Timeout
DBStorage:
default: Database storage
DBStorageEncrypted:
default: Database encryption
DBStorageType:
default: Database storage type
DBTestOnBorrow:
default: DB Test On Borrow?
DBTestWhileIdle:
default: DB Test While Idle?
DBTimeBetweenEvictionRunsMillis:
default: DB Time Between Eviction Runs
DeploymentAutomationRepository:
default: Deployment Automation Git Repository URL
DeploymentAutomationBranch:
default: Deployment Automation Branch
DeploymentAutomationPlaybook:
default: The Ansible playbook to invoke to initialize the instance
DeploymentAutomationKeyName:
default: SSH keyname to use with the repository
DeploymentAutomationCustomParams:
default: Custom command-line parameters for Ansible
ExportPrefix:
default: ASI identifier
HostedZone:
default: Route 53 Hosted Zone
InternetFacingLoadBalancer:
default: Make instance internet facing
JiraProduct:
default: Jira Product *
JiraVersion:
default: Version *
JvmHeapOverride:
default: JVM Heap Size Override
BastionHostRequired:
default: Use Bastion host
KeyPairName:
default: SSH Key Pair Name
MailEnabled:
default: Enable App to Process Email
SSLCertificateARN:
default: SSL Certificate ARN
TomcatAcceptCount:
default: Tomcat Accept Count
TomcatConnectionTimeout:
default: Tomcat Connection Timeout
TomcatContextPath:
default: Tomcat Context Path
TomcatDefaultConnectorPort:
default: Tomcat Default Connector Port
TomcatEnableLookups:
default: Tomcat Enable DNS Lookups
TomcatMaxThreads:
default: Tomcat Maximum Threads
TomcatMinSpareThreads:
default: Tomcat Minimum Spare Threads
TomcatProtocol:
default: Tomcat Protocol
TomcatRedirectPort:
default: Tomcat Redirect Port
QSS3BucketName:
default: Quick Start S3 Bucket Name
QSS3KeyPrefix:
default: Quick Start S3 Key Prefix
Parameters:
CatalinaOpts:
Default: ''
Description: Pass in any additional jvm options to tune Catalina.
Type: String
CidrBlock:
AllowedPattern: '(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/(\d{1,2})'
ConstraintDescription: Must be a valid IP CIDR range of the form x.x.x.x/x.
Description: CIDR Block allowed to access the Atlassian product. This should be set to a trusted IP range; if you want to give public access use '0.0.0.0/0'.
Type: String
MinLength: 9
MaxLength: 18
CloudWatchIntegration:
Default: "Metrics and Logs"
Type: String
Description: "Enables CloudWatch metrics with or without log gathering. If cost is an issue, you can disable this altogether."
AllowedValues: ["Off", "Metrics Only", "Metrics and Logs"]
ConstraintDescription: "Must be 'Off', 'Metrics Only', or 'Metrics and Logs'"
ClusterNodeInstanceType:
Default: c5.xlarge
AllowedValues:
- c4.large
- c4.xlarge
- c4.2xlarge
- c4.4xlarge
- c4.8xlarge
- c5.large
- c5.xlarge
- c5.2xlarge
- c5.4xlarge
- c5.9xlarge
- c5.18xlarge
- c5d.large
- c5d.xlarge
- c5d.2xlarge
- c5d.4xlarge
- c5d.9xlarge
- c5d.18xlarge
- d2.xlarge
- d2.2xlarge
- d2.4xlarge
- d2.8xlarge
- h1.2xlarge
- h1.4xlarge
- h1.8xlarge
- h1.16xlarge
- i3.large
- i3.xlarge
- i3.2xlarge
- i3.4xlarge
- i3.8xlarge
- i3.16xlarge
- i3.metal
- m4.large
- m4.xlarge
- m4.2xlarge
- m4.4xlarge
- m4.10xlarge
- m4.16xlarge
- m5.large
- m5.xlarge
- m5.2xlarge
- m5.4xlarge
- m5.12xlarge
- m5.24xlarge
- m5d.large
- m5d.xlarge
- m5d.2xlarge
- m5d.4xlarge
- m5d.12xlarge
- m5d.24xlarge
- r4.large
- r4.xlarge
- r4.2xlarge
- r4.4xlarge
- r4.8xlarge
- r4.16xlarge
- r5.large
- r5.xlarge
- r5.2xlarge
- r5.4xlarge
- r5.12xlarge
- r5.24xlarge
- r5d.large
- r5d.xlarge
- r5d.2xlarge
- r5d.4xlarge
- r5d.12xlarge
- r5d.24xlarge
- t2.medium
- t2.large
- t2.xlarge
- t2.2xlarge
- t3.medium
- t3.large
- t3.xlarge
- t3.2xlarge
- x1.16xlarge
- x1.32xlarge
- x1e.xlarge
- x1e.2xlarge
- x1e.4xlarge
- x1e.8xlarge
- x1e.16xlarge
- x1e.32xlarge
- z1d.large
- z1d.xlarge
- z1d.2xlarge
- z1d.3xlarge
- z1d.6xlarge
- z1d.12xlarge
ConstraintDescription: Must be an EC2 instance type from the selection list
Description: Instance type for the cluster application nodes.
Type: String
ClusterNodeMax:
Description: Maximum number of nodes in the cluster.
Default: 1
Type: Number
ClusterNodeMin:
Default: 1
Description: Set to 1 for new deployment. Can be updated post launch.
Type: Number
ClusterNodeVolumeSize:
Default: 50
Description: Size of cluster node root volume in Gb (note - size based upon Application indexes x 4).
Type: Number
CustomDnsName:
Default: ""
Description: 'Use custom existing DNS name for your Data Center instance. This will take precedence over HostedZone. Please note: you must own the domain and configure it to point at the load balancer.'
Type: String
DBEngine:
Default: 'PostgreSQL'
Description: 'Database Engine to use for the application. PostgreSQL or Amazon Aurora PostgreSQL.'
AllowedValues:
- 'PostgreSQL'
- 'Amazon Aurora PostgreSQL'
ConstraintDescription: Must be 'Amazon Aurora PostgreSQL' or 'PostgreSQL'.
Type: String
DBEngineVersion:
Default: 12
AllowedValues:
- 12
- 11
- 10
- 9
Description: "The database engine version to use; we'll install a suitable minor version for your chosen engine. Make sure that the Jira version you're installing supports the database engine selected. Check https://confluence.atlassian.com/x/bqr1Nw to verify this. (Warning: Amazon RDS for PostgreSQL 9.6 will reach end of life on January 31st, 2022. Deployments after this date should not be made using this version. If you wish to upgrade to a major version from 9 see: https://confluence.atlassian.com/x/1IRlQQ)"
Type: String
DBInstanceClass:
Default: db.m5.large
AllowedValues:
- db.m5.large
- db.m5.xlarge
- db.m5.2xlarge
- db.m5.4xlarge
- db.m5.12xlarge
- db.m5.24xlarge
- db.r5.large
- db.r5.xlarge
- db.r5.2xlarge
- db.r5.4xlarge
- db.r5.12xlarge
- db.r5.24xlarge
- db.r4.large
- db.r4.xlarge
- db.r4.2xlarge
- db.r4.4xlarge
- db.r4.8xlarge
- db.r4.16xlarge
- db.m4.large
- db.m4.xlarge
- db.m4.2xlarge
- db.m4.4xlarge
- db.m4.10xlarge
- db.m4.16xlarge
- db.t3.medium
- db.t3.large
- db.t3.xlarge
- db.t3.2xlarge
- db.t2.medium
- db.t2.large
- db.t2.xlarge
- db.t2.2xlarge
ConstraintDescription: Must be a valid RDS instance class, from the selection list
Description: RDS instance type (must be r family if using Aurora).
Type: String
DBIops:
Default: 1000
ConstraintDescription: 'Must be in the range 1000 - 30000'
Description: 'Must be in the range of 1000 - 30000 and a multiple of 1000. This value is only used with Provisioned IOPS. Note: The ratio of IOPS per allocated-storage must be between 3.00 and 10.00 (not used for Aurora).'
MaxValue: 30000
MinValue: 1000
Type: Number
DBMasterUserPassword:
AllowedPattern: >-
^(?=^.{8,255}$)(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^A-Za-z0-9])(?!.*[@/"']).*$
ConstraintDescription: >-
Must be at least 8 characters and include 1 uppercase, 1 lowercase, 1 number, and 1 of the following symbols: ! # $ { * : [ = , ] - _ + % &
Description: "Password for the master ('postgres') account. Must be at least 8 characters and include 1 uppercase, 1 lowercase, 1 number, and 1 of the following symbols: ! # $ { * : [ = , ] - _ + % &"
NoEcho: True
MaxLength: 128
MinLength: 8
Type: String
DBMaxIdle:
Default: 20
Description: The maximum number of database connections that are allowed to remain idle in the pool.
Type: Number
DBMaxWaitMillis:
Default: 10000
Description: The length of time (in milliseconds) that Jira is allowed to wait for a database connection to become available (while there are no free ones available in the pool), before returning an error.
Type: Number
DBMinEvictableIdleTimeMillis:
Default: 180000
Description: The minimum amount of time an object may sit idle in the database connection pool before it is eligible for eviction by the idle object eviction.
Type: Number
DBMinIdle:
Default: 10
Description: The minimum number of idle database connections that are kept open at any time.
Type: Number
DBMultiAZ:
Description: Whether to provision a multi-AZ RDS instance.
Default: "true"
AllowedValues:
- "true"
- "false"
ConstraintDescription: Must be 'true' or 'false'.
Type: String
DBPassword:
AllowedPattern: '(?=^.{6,255}$)((?=.*\\d)(?=.*[A-Z])(?=.*[a-z])|(?=.*\\d)(?=.*[^A-Za-z0-9])(?=.*[a-z])|(?=.*[^A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z])|(?=.*\\d)(?=.*[A-Z])(?=.*[^A-Za-z0-9]))^.*'
ConstraintDescription: 'Must be at least 8 characters and include 1 uppercase, 1 lowercase, 1 number, and 1 of the following symbols: ! # $ { * : [ = , ] - _ @ + % &'
Description: "Database password used by Jira. Must be at least 8 characters and include 1 uppercase, 1 lowercase, 1 number, and 1 of the following symbols: ! # $ { * : [ = , ] - _ @ + % &"
MinLength: 8
MaxLength: 128
NoEcho: true
Type: String
DBPoolMaxSize:
Default: 20
Description: The maximum number of database connections that can be opened at any time.
Type: Number
DBPoolMinSize:
Default: 20
Description: The minimum number of idle database connections that are kept open at any time.
Type: Number
DBRemoveAbandoned:
Default: "true"
AllowedValues:
- "true"
- "false"
Description: Flag to remove abandoned database connections if they exceed the Removed Abandoned Timeout.
Type: String
DBRemoveAbandonedTimeout:
Default: 60
Description: The length of time (in seconds) that a database connection can be idle before it is considered abandoned.
Type: Number
DBStorage:
Default: 200
Description: Database allocated storage size, in gigabytes (GB). If you choose Provisioned IOPS, storage should be between 100 and 6144 (not used for Aurora).
Type: Number
DBStorageEncrypted:
Default: "false"
AllowedValues:
- "true"
- "false"
Description: Whether or not to encrypt the database.
Type: String
DBStorageType:
Default: General Purpose (SSD)
AllowedValues:
- General Purpose (SSD)
- Provisioned IOPS
ConstraintDescription: Must be 'General Purpose (SSD)' or 'Provisioned IOPS'.
Description: Database storage type (not used for Aurora).
Type: String
DBTestOnBorrow:
Default: "false"
AllowedValues:
- "true"
- "false"
Description: Tests if the database connection is valid when it is borrowed from the database connection pool by Jira.
Type: String
DBTestWhileIdle:
Default: "true"
AllowedValues:
- "true"
- "false"
Description: Periodically tests if the database connection is valid when it is idle.
Type: String
DBTimeBetweenEvictionRunsMillis:
Default: 60000
Description: The number of milliseconds to sleep between runs of the idle object eviction thread. When non-positive, no idle object eviction thread will be run.
Type: Number
DeploymentAutomationRepository:
Default: "https://bitbucket.org/atlassian/dc-deployments-automation.git"
Type: String
Description: The deployment automation repository to use for per-node initialization. Leave this as default unless you have customizations.
DeploymentAutomationBranch:
Default: "master"
Type: String
Description: The deployment automation repository branch to pull from.
DeploymentAutomationPlaybook:
Default: "aws_jira_dc_node.yml"
Type: String
Description: The Ansible playbook to invoke to initialize the Jira node on first start.
DeploymentAutomationCustomParams:
Default: ""
Type: String
Description: Additional command-line options for the `ansible-playbook` command. See https://bitbucket.org/atlassian/dc-deployments-automation/src/master/README.md for more information about overriding parameters. (Optional)
DeploymentAutomationKeyName:
Default: ""
Type: String
Description: Named Key Pair name to use with this repository. The key should be imported into the SSM parameter store. (Optional)
ExportPrefix:
Default: 'ATL-'
Description:
Each Atlassian Standard Infrastructure (ASI) uses a unique identifier. If you have multiple ASIs within the same AWS region, use this field to specify where to deploy Jira.
Type: String
HostedZone:
Default: ''
ConstraintDescription: Must be the name of an existing Route53 Hosted Zone.
Description: The domain name of the Route53 PRIVATE Hosted Zone in which to create cnames.
Type: String
InternetFacingLoadBalancer:
Default: "true"
AllowedValues: ["true", "false"]
ConstraintDescription: Must be 'true' or 'false'.
Description: Controls whether the load balancer should be visible to the internet (true) or only within the VPC (false).
Type: String
JiraProduct:
Default: Software
Description: The Jira product to install. If "All" is selected, Jira Software and Jira Service Management will be installed. A Jira Service Management license is required in "Applications" admin menu after configuring Jira Software.
Type: String
ConstraintDescription: 'Must be "Core", "Software", "ServiceManagement", or "All".'
AllowedValues:
- Core
- Software
- ServiceManagement
- All
JiraVersion:
Default: "8.20.6"
AllowedPattern: '(\d+\.\d+\.\d+(-?.*))|(latest)'
ConstraintDescription: Must be a valid version number or 'latest'; for example, 8.14.0 for Jira Software, or 4.14.0 for Jira Service Management.
Description: The version of Jira Software or Jira Service Management to install. If choosing Jira All, pick the version of Jira Software and the latest compatible version of Jira Service Management will be selected automatically. Find valid versions at https://confluence.atlassian.com/x/TVlNLg (Jira Software), https://confluence.atlassian.com/x/jh9-Lg (Jira Service Management), or https://confluence.atlassian.com/x/XM2EO (Long Term Support releases).
Type: String
JvmHeapOverride:
Default: ''
Description: Override the default amount of memory to allocate to the JVM for your instance type - set size in meg or gig e.g. 1024m or 1g.
Type: String
BastionHostRequired:
Default: "true"
AllowedValues:
- "true"
- "false"
Description: Whether to grant access to Jira EC2 instances through the ASI's Bastion host (if it exists). If 'true', remember to provide an EC2 Key Pair. If your ASI does not have a Bastion host, set this to 'false'.
Type: String
KeyPairName:
ConstraintDescription: Must be the name of an existing EC2 Key Pair. Note the supplied value must not include the file extension.
Description: Public/private EC2 Key Pairs (without file extension) to allow you to securely access the Bastion host.
Type: String
Default: ''
MailEnabled:
AllowedValues:
- "true"
- "false"
ConstraintDescription: Must be 'true' or 'false'.
Default: "true"
Description: Enable mail processing and sending.
Type: String
SSLCertificateARN:
Default: ''
Description: "Amazon Resource Name (ARN) of your SSL certificate. Supplying this will automatically enable HTTPS on the product and load balancer, configured to use the corresponding certificate. If you want to use your own certificate that you generated outside of Amazon, you need to first import it to AWS Certificate Manager. After a successful import, you'll receive the ARN. If you want to create a certificate with AWS Certificate Manager (ACM certificate), you will receive the ARN after it's successfully created."
MinLength: 0
MaxLength: 90
Type: String
TomcatAcceptCount:
Default: 10
Description: The maximum queue length for incoming connection requests when all possible request processing threads are in use.
Type: Number
TomcatConnectionTimeout:
Default: 20000
Description: The number of milliseconds this Connector will wait, after accepting a connection, for the request URI line to be presented.
Type: Number
TomcatContextPath:
Default: ''
AllowedPattern: '^(\/[A-z_\-0-9\.]+)?$'
Description: The context path of this web application, which is matched against the beginning of each request URI to select the appropriate web application for processing. If used, must include leading "/".
Type: String
TomcatDefaultConnectorPort:
Default: 8080
Description: The port on which to serve the application.
Type: Number
TomcatEnableLookups:
Default: "false"
AllowedValues:
- "true"
- "false"
Description: Set to true if you want calls to request.getRemoteHost() to perform DNS lookups in order to return the actual host name of the remote client.
Type: String
TomcatMaxThreads:
Default: 200
Description: The maximum number of request processing threads to be created by this Connector, which therefore determines the maximum number of simultaneous requests that can be handled.
Type: Number
TomcatMinSpareThreads:
Default: 10
Description: The minimum number of threads always kept running.
Type: Number
TomcatProtocol:
Default: 'HTTP/1.1'
Description: Sets the protocol to handle incoming traffic.
Type: String
TomcatRedirectPort:
Default: 8443
Description: The port number for Catalina to use when automatically redirecting a non-SSL connector actioning a redirect to a SSL URI.
Type: Number
QSS3BucketName:
Default: 'aws-quickstart'
AllowedPattern: ^[0-9a-zA-Z]+([0-9a-zA-Z-]*[0-9a-zA-Z])*$
ConstraintDescription: Quick Start bucket name can include numbers, lowercase
letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen
(-).
Description: S3 bucket name for the Quick Start assets. Quick Start bucket name
can include numbers, lowercase letters, uppercase letters, and hyphens (-).
It cannot start or end with a hyphen (-).
Type: String
QSS3KeyPrefix:
Default: 'quickstart-atlassian-jira/'
AllowedPattern: ^[0-9a-zA-Z-/]*$
ConstraintDescription: Quick Start key prefix can include numbers, lowercase letters,
uppercase letters, hyphens (-), and forward slash (/).
Description: S3 key prefix for the Quick Start assets. Quick Start key prefix
can include numbers, lowercase letters, uppercase letters, hyphens (-), and
forward slash (/).
Type: String
Conditions:
DisableMail:
!Not [!Equals [!Ref MailEnabled, true]]
EnableCloudWatch:
!Not [!Equals [!Ref CloudWatchIntegration, 'Off']]
EnableCloudWatchLogs:
!Equals [!Ref CloudWatchIntegration, 'Metrics and Logs']
DoSSL:
!Not [!Equals [!Ref SSLCertificateARN, '']]
KeyProvided:
!Not [!Equals [!Ref KeyPairName, '']]
OverrideHeap:
!Not [!Equals [!Ref JvmHeapOverride, '']]
UseContextPath:
!Not [!Equals [!Ref TomcatContextPath, '']]
UseCustomDnsName:
!Not [!Equals [!Ref CustomDnsName, '']]
UseDatabaseEncryption:
!Equals [!Ref DBStorageEncrypted, true]
UseHostedZone:
!Not [!Equals [!Ref HostedZone, '']]
UsePublicIp:
!Equals [!Ref InternetFacingLoadBalancer, 'true']
GovCloudCondition:
!Equals [!Ref 'AWS::Region', 'us-gov-west-1']
DBEngineAurora:
!Equals [!Ref DBEngine, "Amazon Aurora PostgreSQL"]
DBEnginePostgres:
!Equals [!Ref DBEngine, "PostgreSQL"]
UseBastionHost: !And
- !Equals [!Ref BastionHostRequired, true]
- !Condition KeyProvided
InstallJSDAsOBR:
!Equals [!Ref JiraProduct, "All"]
Mappings:
AWSInstanceType2Arch:
c4.large:
Arch: HVM64
Jvmheap: 2304m
c4.xlarge:
Arch: HVM64
Jvmheap: 4608m
c4.2xlarge:
Arch: HVM64
Jvmheap: 12288m
c4.4xlarge:
Arch: HVM64
Jvmheap: 12288m
c4.8xlarge:
Arch: HVM64
Jvmheap: 12288m
c5.large:
Arch: HVM64
Jvmheap: 2048m
c5.xlarge:
Arch: HVM64
Jvmheap: 5120m
c5.2xlarge:
Arch: HVM64
Jvmheap: 12288m
c5.4xlarge:
Arch: HVM64
Jvmheap: 12288m
c5.9xlarge:
Arch: HVM64
Jvmheap: 12288m
c5.18xlarge:
Arch: HVM64
Jvmheap: 12288m
c5d.large:
Arch: HVM64
Jvmheap: 2048m
c5d.xlarge:
Arch: HVM64
Jvmheap: 5120m
c5d.2xlarge:
Arch: HVM64
Jvmheap: 12288m
c5d.4xlarge:
Arch: HVM64
Jvmheap: 12288m
c5d.9xlarge:
Arch: HVM64
Jvmheap: 12288m
c5d.18xlarge:
Arch: HVM64
Jvmheap: 12288m
d2.xlarge:
Arch: HVM64
Jvmheap: 12288m
d2.2xlarge:
Arch: HVM64
Jvmheap: 12288m
d2.4xlarge:
Arch: HVM64
Jvmheap: 12288m
d2.8xlarge:
Arch: HVM64
Jvmheap: 12288m
h1.2xlarge:
Arch: HVM64
Jvmheap: 12288m
h1.4xlarge:
Arch: HVM64
Jvmheap: 12288m
h1.8xlarge:
Arch: HVM64
Jvmheap: 12288m
h1.16xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.large:
Arch: HVM64
Jvmheap: 12288m
i3.xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.2xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.4xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.8xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.16xlarge:
Arch: HVM64
Jvmheap: 12288m
i3.metal:
Arch: HVM64
Jvmheap: 12288m
m4.large:
Arch: HVM64
Jvmheap: 5120m
m4.xlarge:
Arch: HVM64
Jvmheap: 12288m
m4.2xlarge:
Arch: HVM64
Jvmheap: 12288m
m4.4xlarge:
Arch: HVM64
Jvmheap: 12288m
m4.10xlarge:
Arch: HVM64
Jvmheap: 12288m
m4.16xlarge:
Arch: HVM64
Jvmheap: 12288m
m5.large:
Arch: HVM64
Jvmheap: 5120m
m5.xlarge:
Arch: HVM64
Jvmheap: 12288m
m5.2xlarge:
Arch: HVM64
Jvmheap: 12288m
m5.4xlarge:
Arch: HVM64
Jvmheap: 12288m
m5.12xlarge:
Arch: HVM64
Jvmheap: 12288m
m5.24xlarge:
Arch: HVM64
Jvmheap: 12288m
m5d.large:
Arch: HVM64
Jvmheap: 5120m
m5d.xlarge:
Arch: HVM64
Jvmheap: 12288m
m5d.2xlarge:
Arch: HVM64
Jvmheap: 12288m
m5d.4xlarge:
Arch: HVM64
Jvmheap: 12288m
m5d.12xlarge:
Arch: HVM64
Jvmheap: 12288m
m5d.24xlarge:
Arch: HVM64
Jvmheap: 12288m
r4.large:
Arch: HVM64
Jvmheap: 12288m
r4.xlarge:
Arch: HVM64
Jvmheap: 12288m
r4.2xlarge:
Arch: HVM64
Jvmheap: 12288m
r4.4xlarge:
Arch: HVM64
Jvmheap: 12288m
r4.8xlarge:
Arch: HVM64
Jvmheap: 12288m
r4.16xlarge:
Arch: HVM64
Jvmheap: 12288m
r5.large:
Arch: HVM64
Jvmheap: 12288m
r5.xlarge:
Arch: HVM64
Jvmheap: 12288m
r5.2xlarge:
Arch: HVM64
Jvmheap: 12288m
r5.4xlarge:
Arch: HVM64
Jvmheap: 12288m
r5.12xlarge:
Arch: HVM64
Jvmheap: 12288m
r5.24xlarge:
Arch: HVM64
Jvmheap: 12288m
r5d.large:
Arch: HVM64
Jvmheap: 12288m
r5d.xlarge:
Arch: HVM64
Jvmheap: 12288m
r5d.2xlarge:
Arch: HVM64
Jvmheap: 12288m
r5d.4xlarge:
Arch: HVM64
Jvmheap: 12288m
r5d.12xlarge:
Arch: HVM64
Jvmheap: 12288m
r5d.24xlarge:
Arch: HVM64
Jvmheap: 12288m
t2.medium:
Arch: HVM64
Jvmheap: 2048m
t2.large:
Arch: HVM64
Jvmheap: 5120m
t2.xlarge:
Arch: HVM64
Jvmheap: 12288m
t2.2xlarge:
Arch: HVM64
Jvmheap: 12288m
t3.medium:
Arch: HVM64
Jvmheap: 2048m
t3.large:
Arch: HVM64
Jvmheap: 5120m
t3.xlarge:
Arch: HVM64
Jvmheap: 12288m
t3.2xlarge:
Arch: HVM64
Jvmheap: 12288m
x1.16xlarge:
Arch: HVM64
Jvmheap: 12288m
x1.32xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.2xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.4xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.8xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.16xlarge:
Arch: HVM64
Jvmheap: 12288m
x1e.32xlarge:
Arch: HVM64
Jvmheap: 12288m
z1d.large:
Arch: HVM64
Jvmheap: 12288m
z1d.xlarge:
Arch: HVM64
Jvmheap: 12288m
z1d.2xlarge:
Arch: HVM64
Jvmheap: 12288m
z1d.3xlarge:
Arch: HVM64
Jvmheap: 12288m
z1d.6xlarge:
Arch: HVM64
Jvmheap: 12288m
z1d.12xlarge:
Arch: HVM64
Jvmheap: 12288m
AWSRegionArch2AMI:
ap-northeast-1:
HVM64: ami-08d56ac42e2d4a08b
ap-northeast-2:
HVM64: ami-0eb7a369386789460
ap-south-1:
HVM64: ami-0dafa01c8100180f8
ap-southeast-1:
HVM64: ami-04fc979a55e14b094
ap-southeast-2:
HVM64: ami-042c4533fa25c105a
ca-central-1:
HVM64: ami-040d8c460f4fc4a9f
eu-central-1:
HVM64: ami-00e232b942edaf8f9
eu-north-1:
HVM64: ami-0e3f1570eb0a9bc7f
eu-west-1:
HVM64: ami-09d5dd12541e69077
eu-west-2:
HVM64: ami-098a393b6fa6e700b
eu-west-3:
HVM64: ami-05cb6b584fc3c8ac8
sa-east-1:
HVM64: ami-088911543b10876a4
us-east-1:
HVM64: ami-038b3df3312ddf25d
us-east-2:
HVM64: ami-07b1d7739c91ed3fc
us-west-1:
HVM64: ami-0729cd65c1a99b0c9
us-west-2:
HVM64: ami-090bc08d7ae1f3881
us-gov-west-1:
HVM64: ami-0bbf3595bb2fb39ec
us-gov-east-1:
HVM64: ami-0cc17d57bec8c6017
JIRAProduct2NameAndVersion:
Core:
name: jira-core
editionToInstall: core
shortdisplayname: '"Jira Core"'
fulldisplayname: '"Atlassian Jira Core"'
ServiceManagement:
name: servicedesk
editionToInstall: servicedesk
shortdisplayname: '"Jira SD"'
fulldisplayname: '"Atlassian Jira Service Management"'
Software:
name: jira-software
editionToInstall: software
shortdisplayname: '"Jira SW"'
fulldisplayname: '"Atlassian Jira Software"'
All:
name: jira-all
editionToInstall: software
shortdisplayname: '"Jira"'
fulldisplayname: '"Atlassian Jira"'
Resources:
JiraClusterNodeRole: