-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
79 lines (60 loc) · 997 Bytes
/
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
variable "cluster_name" {
default = "test"
}
variable "environment" {
default = "test"
}
variable "region" {
default = "eu-west-1"
}
variable "role" {
default = "arn:aws:iam::****:role/eks-admin"
}
variable "ami_id" {
default = "ami-***"
}
variable "vpc_id" {
default = "vpc-***"
}
variable "worker_instance_type" {
default = "t2.micro"
}
variable "master_instance_type" {
default = "t2.micro"
}
variable "subnet_id1" {
default = "subnet-***"
}
variable "subnet_id2" {
default = "subnet-***"
}
variable "iam_policy" {
default = "eks-all"
}
variable "cidr_blocks" {
default = ["172.31.0.0/16"]
}
variable "worker_min_size" {
default = 2
}
variable "worker_max_size" {
default = 2
}
variable "worker_desired_size" {
default = 2
}
variable "master_min_size" {
default = 1
}
variable "master_max_size" {
default = 1
}
variable "master_desired_size" {
default = 1
}
variable "access_key" {
default = ""
}
variable "secret_key" {
default = ""
}