File tree 4 files changed +46
-0
lines changed
4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ module "comet_eks" {
80
80
81
81
eks_druid_instance_type = var. eks_druid_instance_type
82
82
eks_druid_node_count = var. eks_druid_node_count
83
+ eks_airflow_instance_type = var. eks_airflow_instance_type
84
+ eks_airflow_node_count = var. eks_airflow_node_count
83
85
}
84
86
85
87
module "comet_elasticache" {
Original file line number Diff line number Diff line change @@ -72,6 +72,28 @@ module "eks" {
72
72
nodegroup_name = " druid"
73
73
}
74
74
iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
75
+ },
76
+ airflow = {
77
+ name = " airflow"
78
+ instance_types = [var.eks_airflow_instance_type]
79
+ min_size = var.eks_airflow_node_count
80
+ max_size = var.eks_airflow_node_count
81
+ desired_size = var.eks_airflow_node_count
82
+ block_device_mappings = {
83
+ xvda = {
84
+ device_name = " /dev/xvda"
85
+ ebs = {
86
+ volume_size = var.eks_mng_disk_size
87
+ volume_type = local.volume_type
88
+ encrypted = local.volume_encrypted
89
+ delete_on_termination = local.volume_delete_on_termination
90
+ }
91
+ }
92
+ }
93
+ labels = {
94
+ nodegroup_name = " airflow"
95
+ }
96
+ iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
75
97
}
76
98
} : {}
77
99
)
Original file line number Diff line number Diff line change @@ -103,4 +103,14 @@ variable "eks_druid_instance_type" {
103
103
variable "eks_druid_node_count" {
104
104
description = " Instance count for EKS Druid nodes"
105
105
type = number
106
+ }
107
+
108
+ variable "eks_airflow_instance_type" {
109
+ description = " Instance type for EKS Airflow nodes"
110
+ type = string
111
+ }
112
+
113
+ variable "eks_airflow_node_count" {
114
+ description = " Instance count for EKS Airflow nodes"
115
+ type = number
106
116
}
Original file line number Diff line number Diff line change @@ -230,6 +230,18 @@ variable "eks_druid_node_count" {
230
230
default = 4
231
231
}
232
232
233
+ variable "eks_airflow_instance_type" {
234
+ description = " Instance type for EKS Airflow nodes"
235
+ type = string
236
+ default = " t3.medium"
237
+ }
238
+
239
+ variable "eks_airflow_node_count" {
240
+ description = " Instance count for EKS Airflow nodes"
241
+ type = number
242
+ default = 2
243
+ }
244
+
233
245
# ### comet_elasticache ####
234
246
variable "elasticache_allow_from_sg" {
235
247
description = " Security group from which to allow connections to ElastiCache, to use when provisioning with existing compute"
You can’t perform that action at this time.
0 commit comments