-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
116 lines (94 loc) · 2.72 KB
/
variables.tf
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
variable "environment" {
description = "Deployment environment, i.e. dev/stage/prod, etc"
type = string
}
variable "vpc_id" {
description = "ID of the VPC that the EKS cluster will be launched in"
type = string
}
variable "eks_private_subnets" {
description = "IDs of private subnets within the VPC"
type = list(string)
}
variable "eks_cluster_name" {
description = "Name for the EKS cluster"
type = string
}
variable "eks_cluster_version" {
description = "Kubernetes version for the EKS cluster"
type = string
}
variable "eks_mng_name" {
description = "Name for the EKS managed nodegroup"
type = string
}
variable "eks_mng_ami_type" {
description = "AMI family to use for the EKS nodes"
type = string
}
variable "eks_node_types" {
description = "Node instance types for EKS managed node group"
type = list(string)
}
variable "eks_mng_desired_size" {
description = "Desired number of nodes in EKS cluster"
type = number
}
variable "eks_mng_max_size" {
description = "Maximum number of nodes in EKS cluster"
type = number
}
variable "eks_mng_disk_size" {
description = "Size of the storage disks for nodes in EKS cluster"
type = number
}
variable "eks_aws_load_balancer_controller" {
description = "Enables the AWS Load Balancer Controller in the EKS cluster"
type = bool
}
variable "eks_cert_manager" {
description = "Enables cert-manager in the EKS cluster"
type = bool
}
variable "eks_aws_cloudwatch_metrics" {
description = "Enables AWS Cloudwatch Metrics in the EKS cluster"
type = bool
}
variable "eks_external_dns" {
description = "Enables ExternalDNS in the EKS cluster"
type = bool
}
variable "eks_external_dns_r53_zones" {
description = "Route 53 zones for external-dns to have access to"
type = list(string)
}
variable "s3_enabled" {
description = "Indicates if S3 bucket is being provisioned for Comet"
type = bool
default = null
}
variable "comet_ec2_s3_iam_policy" {
description = "Policy with access to S3 to associate with EKS worker nodes"
type = string
default = null
}
variable "enable_mpm_infra" {
description = "Sets MNGs to be created for MPM compute"
type = bool
}
variable "eks_druid_instance_type" {
description = "Instance type for EKS Druid nodes"
type = string
}
variable "eks_druid_node_count" {
description = "Instance count for EKS Druid nodes"
type = number
}
variable "eks_airflow_instance_type" {
description = "Instance type for EKS Airflow nodes"
type = string
}
variable "eks_airflow_node_count" {
description = "Instance count for EKS Airflow nodes"
type = number
}