-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
158 lines (145 loc) · 3.13 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
variable "aws_region" {
type = string
}
variable "vpc_cidr" {
type = string
}
variable "vpc_name" {
type = string
}
variable "us-east-1b_availability_zone" {
type = string
}
variable "us-east-1c_availability_zone" {
type = string
}
variable "us-east-1d_availability_zone" {
type = string
}
variable "public_subnet_1_cidr" {
type = string
}
variable "public_subnet_2_cidr" {
type = string
}
variable "public_subnet_3_cidr" {
type = string
}
variable "private_subnet_1_cidr" {
type = string
}
variable "private_subnet_2_cidr" {
type = string
}
variable "private_subnet_3_cidr" {
type = string
}
variable "public_subnet_1_name" {
type = string
}
variable "public_subnet_2_name" {
type = string
}
variable "public_subnet_3_name" {
type = string
}
variable "private_subnet_1_name" {
type = string
}
variable "private_subnet_2_name" {
type = string
}
variable "private_subnet_3_name" {
type = string
}
variable "kms_key_deletion_window" {
type = number
}
variable "kms_key_rotation_period" {
type = number
}
variable "eks_secrets_key_alias" {
type = string
}
variable "ebs_volumes_key_alias" {
type = string
}
variable "eks_cluster_name" {
type = string
}
variable "eks_cluster_version" {
type = string
}
variable "eks_cluster_authentication_mode" {
type = string
}
variable "eks_cluster_ip_family" {
type = string
}
variable "eks_cluster_node_group_name" {
type = string
}
variable "node_group_instance_capacity_type" {
type = string
}
variable "node_group_min_size" {
type = number
description = "Minimum size of the node group"
}
variable "node_group_max_size" {
type = number
description = "Maximum size of the node group"
}
variable "node_group_desired_size" {
type = number
description = "Desired size of the node group"
}
variable "node_group_instance_types" {
type = list(string)
description = "Instance types for the node group"
}
variable "node_group_instance_ami_type" {
type = string
description = "AMI type for the node group instances"
}
variable "node_group_instance_disk_size" {
type = number
description = "Disk size (in GB) for the node group instances"
}
variable "node_group_instance_max_unavailable" {
type = number
description = "Maximum number of unavailable nodes during updates"
}
variable "chart_path_autoscaler" {
description = "The path to the directory containing the Helm chart archives"
type = string
}
variable "chart_path_fluentbit" {
description = "The path to the directory containing the Helm chart archives"
type = string
}
variable "kubeconfig_path" {
description = "The path to the local kubeconfig file"
type = string
}
variable "db_user" {
type = string
}
variable "db_password" {
type = string
}
variable "db_name" {
type = string
}
variable "db_hostname" {
type = string
}
variable "grafana_username" {
type = string
}
variable "grafana_password" {
type = string
}
variable "cluster_autoscaler_image_tag" {
type = string
}