-
Notifications
You must be signed in to change notification settings - Fork 1
/
vars.tf
62 lines (49 loc) · 1.32 KB
/
vars.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
variable eks_region {
default = "us-east-1"
}
variable cluster_name {
default = "test-fernando" # create_cluster.sh / do not remove this comment
}
variable cluster_version {
default = "1.11"
}
variable environment_name {
default = "test"
}
variable vpc_cidr {
default = "10.0.0.0/16"
}
variable eks_public_cidrs {
type = "list"
description = "List of subnet CIDR blocks. Each subnet will be sent to a different Availability Zone in the aws_region."
default = ["10.0.0.0/24", "10.0.1.0/24"]
}
variable eks_private_cidrs {
type = "list"
description = "List of subnet CIDR blocks. Each subnet will be sent to a different Availability Zone in the aws_region."
default = ["10.0.10.0/24", "10.0.11.0/24"]
}
variable eks_azs {
type = "list"
description = "List of subnet CIDR blocks. Each subnet will be sent to a different Availability Zone in the aws_region."
default = ["us-east-1a", "us-east-1b"]
}
variable my_external_ip {
type = "list"
default = ["10.10.10.10/32"] # change this to your external IP
}
variable ssh_key_name {
default = "my-ssh-key" # change this to your ssh-key
}
variable worker_instance_type {
default = "t3.medium"
}
variable volume_size {
default = "100"
}
variable asg_desired_capacity {
default = 2
}
variable asg_max_size {
default = 2
}