forked from blue-harvest/terraform-aws-blueharvest-eks
-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
73 lines (59 loc) · 1.67 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
variable "availability_zones" {
description = "AWS availability zones."
default = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
}
variable "eks_ami_id" {
description = "AMI used for the worker nodes. Default amazon-eks-node-1.11-v20190109."
default = "ami-01e08d22b9439c15a"
}
variable "instance_type" {
description = "Instance type used for the worker nodes."
default = "t2.large"
}
variable "asg_min_size" {
description = "Min nodes the cluster will have."
default = "5"
}
variable "asg_max_size" {
description = "Max nodes the cluster will autoscale to."
default = "24"
}
variable "cluster_name" {
description = "Name of the EKS Cluster."
default = "blueharvest"
}
variable "cluster_zone" {
description = "Root domain name of the hosted zone on AWS."
}
variable "cluster_zone_id" {
description = "ID of the hosted zone on AWS."
}
variable "letsencrypt_email" {
description = "Email address used for ACME registration"
type = "string"
}
variable "letsencrypt_production" {
description = "If the ACME production server will be used or not."
type = "string"
default = "false"
}
variable "map_users" {
description = "Additional IAM users to add to the aws-auth configmap."
type = "list"
default = []
}
variable "map_users_count" {
description = "The count of users in the map_users list."
type = "string"
default = 0
}
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap."
type = "list"
default = []
}
variable "map_roles_count" {
description = "The count of roles in the map_users list."
type = "string"
default = 0
}