-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
75 lines (59 loc) · 1.04 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
variable "aws_region" {
default = "us-east-1"
type = string
}
variable "aws_profile" {
type = string
}
variable "cluster_name" {
type = string
}
variable "cluster_endpoint_public_access" {
type = bool
default = false
}
variable "cluster_endpoint_public_access_cidrs" {
type = list(string)
default = ["0.0.0.0/0"]
}
variable "k8s_version" {
default = "1.21"
type = string
}
variable "management_cidrs" {
type = list(string)
}
variable "enable_monitoring" {
type = bool
default = true
}
variable "tags" {
type = map(string)
}
variable "vpc_id" {
type = string
}
variable "subnets" {
type = list(string)
}
variable "admin_role_arn" {
type = string
}
//variable "secrets_encryption_key_arn" {
// type = string
//}
variable "ec2_keypair_name" {
type = string
}
variable "cluster_autoscaler_namespace" {
type = string
default = "kube-system"
}
variable "cluster_autoscaler_serviceaccount_name" {
type = string
default = "cluster-autoscaler"
}
variable "node_groups" {
type = list(any)
default = []
}