forked from Jnig/terraform-kubernetes-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.tf
78 lines (62 loc) · 1.8 KB
/
input.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
variable "name" {
description = "The cluster name"
}
variable "ssh_key" {
description = "The name of SSH key to use"
}
variable "cluster_network_plugin" {
description = "The Pod networking CNI network plugin : flannel(default) / weave"
default = "flannel"
}
variable "master_instance_type" {
description = "The Master instance type"
default = "t2.small"
}
variable "node_instance_type" {
description = "The node instance type"
default = "t2.large"
}
variable "node_asg_min" {
description = "The minimal size of the node autoscaling group"
}
variable "node_asg_max" {
description = "The maximum size of the node autoscaling group"
}
variable "node_asg_desired" {
description = "The initial size of the node autoscaling group"
}
variable "vpc" {
description = "The ID of the VPC containing the cluster"
}
variable "proxy_servers" {
description = "The DNS name of the proxy server with port <ip>:port"
default = ""
}
variable "subnets" {
description = "An array containing the subnets to spawn the cluster members in."
default = []
}
variable "kubernetes_version" {
description = "The kubernetes version"
default = "1.8.7"
}
variable "kubernetes_dashboard_version" {
description = "The Kubernetes Dashboard version"
default = "1.8.2"
}
variable "additional_iam_policy" {
description = "The content of an additionnal IAM policy"
default = ""
}
variable "additional_certificates" {
description = "Additional certificates put on the nodes, useful if you have private docker repositories"
default = ""
}
variable "additional_tags" {
description = "Additionnal custom tags, e.g. for corporate billing"
default = {}
}
variable "enable_kube2iam" {
description = "Enable Kube2IAM to add security to AWS API access from pods"
default = true
}