Skip to content

Commit 72c71c4

Browse files
committed
Adjust ssl_certificate_arn usage in alb
1 parent b6c37ce commit 72c71c4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

comet-infrastructure/terraform.tfvars

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c"]
1515
comet_public_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
1616
comet_private_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
1717

18+
# if provisioning comet_ec2_alb, specify the following for the HTTPS listener
19+
#ssl_certificate_arn = ""
20+
1821
# if provisioning comet_elasticache for use with existing compute, set the variable below to specify an SG that connections will be allowed from
1922
elasticache_allow_from_sg = "sg-012345abcdefghijkl"
2023

2124
# if provisioning comet_rds for use with existing compute, set the variable below to specify an SG that connections will be allowed from
2225
rds_allow_from_sg = "sg-012345abcdefghijkl"
2326

2427
s3_bucket_name = "comet-use2-bucket"
25-
rds_root_password = "CHANGE-ME"
26-
ssl_certificate_arn = ""
28+
rds_root_password = "CHANGE-ME"

comet-infrastructure/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ variable "comet_ec2_key" {
122122
variable "ssl_certificate_arn" {
123123
description = "ARN of the ACM certificate to use for the ALB"
124124
type = string
125-
default = ""
125+
default = null
126126
}
127127

128128
#comet_eks

0 commit comments

Comments
 (0)