File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ module "comet_eks" {
6969 eks_cert_manager = var. eks_cert_manager
7070 eks_aws_cloudwatch_metrics = var. eks_aws_cloudwatch_metrics
7171 eks_external_dns = var. eks_external_dns
72+ eks_external_dns_r53_zones = var. eks_external_dns_r53_zones
7273
7374 s3_enabled = var. enable_s3
7475 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 @@ -50,7 +50,7 @@ module "irsa-ebs-csi" {
5050
5151module "eks_blueprints_addons" {
5252 source = " aws-ia/eks-blueprints-addons/aws"
53- version = " 0.2.0 "
53+ version = " 1.9.1 "
5454
5555 cluster_name = module. eks . cluster_name
5656 cluster_endpoint = module. eks . cluster_endpoint
@@ -68,6 +68,7 @@ module "eks_blueprints_addons" {
6868 enable_cert_manager = var. eks_cert_manager
6969 enable_aws_cloudwatch_metrics = var. eks_aws_cloudwatch_metrics
7070 enable_external_dns = var. eks_external_dns
71+ external_dns_route53_zone_arns = var. eks_external_dns_r53_zones
7172
7273 tags = local. tags
7374}
Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ variable "eks_external_dns" {
6868 type = bool
6969}
7070
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+
7176variable "s3_enabled" {
7277 description = " Indicates if S3 bucket is being provisioned for Comet"
7378 type = bool
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ variable "eks_cluster_name" {
136136variable "eks_cluster_version" {
137137 description = " Kubernetes version of the EKS cluster"
138138 type = string
139- default = " 1.26 "
139+ default = " 1.27 "
140140}
141141
142142variable "eks_mng_name" {
@@ -178,7 +178,7 @@ variable "eks_aws_load_balancer_controller" {
178178variable "eks_cert_manager" {
179179 description = " Enables cert-manager in the EKS cluster"
180180 type = bool
181- default = true
181+ default = false
182182}
183183
184184variable "eks_aws_cloudwatch_metrics" {
@@ -190,7 +190,15 @@ variable "eks_aws_cloudwatch_metrics" {
190190variable "eks_external_dns" {
191191 description = " Enables ExternalDNS in the EKS cluster"
192192 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+ ]
194202}
195203
196204# ### comet_elasticache ####
You can’t perform that action at this time.
0 commit comments