-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables.tf
113 lines (93 loc) · 2.82 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
variable "vpc_id" {
type = string
description = "The VPC ID of the pre-existing VPC."
}
variable "region" {
type = string
description = "The AWS region."
}
variable "subnet_name_filters_for_cluster" {
type = list(string)
description = "The filters to be used on the subnet names to select the subnets to use for the cluster."
}
variable "subnet_name_filters_for_nodes" {
type = list(string)
description = "The filters to be used on the subnet names to select the subnets to use for the nodes."
}
variable "node_group_max_size" {
type = string
description = "Max nodes for node group."
default = "1"
}
variable "node_group_min_size" {
type = string
description = "Min nodes for node group."
default = "1"
}
variable "node_group_desired_capacity" {
type = string
description = "Desired nodes for node group."
default = "1"
}
variable "node_group_instance_type" {
type = string
description = "Node instance type."
default = "m5.large"
}
variable "base_domain" {
type = string
description = "Base domain for the Rancher subdomain."
}
variable "cluster_name" {
type = string
description = "The EKS cluster name. Name is auto generated as 'rancher-rAnDomChARs' if empty"
default = ""
}
variable "shell_interpreter" {
type = list(string)
description = "The shell interpreter that should be used for the EKS 'wait for cluster'."
default = ["bash", "-c"]
}
variable "kubernetes_version" {
type = string
description = "The Kubernetes version to choose, must be available for EKS."
}
variable "ingress_nginx_version" {
type = string
description = "Ingress Nginx version"
}
variable "ingress_nginx_values_filename" {
type = string
description = "Filename for the Helm values YAML file for ingress-nginx"
default = ""
}
variable "cert_manager_version" {
type = string
description = "Cert-manager version from https://cert-manager.io/docs/installation/kubernetes/"
}
variable "cert_manager_values_filename" {
type = string
description = "Filename for the Helm values YAML file for cert-manager"
default = ""
}
variable "cert_manager_letsencrypt_environment" {
type = string
description = "Lets Encrypt environment, valid options are 'staging' or 'production'"
}
variable "cert_manager_letsencrypt_email" {
type = string
description = "Lets Encrypt environment, email address for notifications"
}
variable "rancher_version" {
type = string
description = "Rancher version"
}
variable "rancher_values_filename" {
type = string
description = "Filename for the Helm values YAML file for rancher"
default = ""
}
variable "rancher_admin_password" {
type = string
description = "Rancher admin password"
}