File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ module "comet_eks" {
69
69
eks_cert_manager = var. eks_cert_manager
70
70
eks_aws_cloudwatch_metrics = var. eks_aws_cloudwatch_metrics
71
71
eks_external_dns = var. eks_external_dns
72
+ eks_external_dns_r53_zones = var. eks_external_dns_r53_zones
72
73
73
74
s3_enabled = var. enable_s3
74
75
comet_ec2_s3_iam_policy = var. enable_s3 ? module. comet_s3 [0 ]. comet_s3_iam_policy_arn : null
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ module "eks_blueprints_addons" {
68
68
enable_cert_manager = var. eks_cert_manager
69
69
enable_aws_cloudwatch_metrics = var. eks_aws_cloudwatch_metrics
70
70
enable_external_dns = var. eks_external_dns
71
+ external_dns_route53_zone_arns = var. eks_external_dns_r53_zones
71
72
72
73
tags = local. tags
73
74
}
Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ variable "eks_external_dns" {
68
68
type = bool
69
69
}
70
70
71
+ variable "eks_external_dns_r53_zones" {
72
+ description = " Route 53 zones for external-dns to have access to"
73
+ type = list (string )
74
+ }
75
+
71
76
variable "s3_enabled" {
72
77
description = " Indicates if S3 bucket is being provisioned for Comet"
73
78
type = bool
Original file line number Diff line number Diff line change @@ -190,7 +190,15 @@ variable "eks_aws_cloudwatch_metrics" {
190
190
variable "eks_external_dns" {
191
191
description = " Enables ExternalDNS in the EKS cluster"
192
192
type = bool
193
- default = true
193
+ default = false
194
+ }
195
+
196
+ variable "eks_external_dns_r53_zones" {
197
+ description = " Route 53 zones for external-dns to have access to"
198
+ type = list (string )
199
+ default = [
200
+ " arn:aws:route53:::hostedzone/XYZ"
201
+ ]
194
202
}
195
203
196
204
# ### comet_elasticache ####
You can’t perform that action at this time.
0 commit comments