-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
54 lines (45 loc) · 1.19 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
variable "cert_manager_version" {
type = string
description = "cert-manager version."
default = "1.5.3"
}
variable "rancher_version" {
type = string
description = "rancher version."
default = "latest"
}
variable "letsencrypt_issuer" {
type = string
}
variable "rancher_hostname" {
type = string
description = "Rancher hostname, defaults to 'https://rancher.YOUR_LB_ADDRESS.nip.io"
}
variable "rancher_admin_password" {
type = string
description = "Rancher password to set for admin user."
sensitive = true
}
variable "lb_address" {
type = string
description = "Hetzner loadbalancer address."
}
variable "kubernetes_api_server_url" {
type = string
description = "Kubernetes cluster api server url where rancher will be installed."
}
variable "kubernetes_client_cert" {
type = string
description = "Kubernets cluster client certificate."
sensitive = true
}
variable "kubernetes_client_key" {
type = string
description = "Kubernets cluster client key."
sensitive = true
}
variable "kubernetes_ca_crt" {
type = string
description = "Kubernets cluster ca certificate."
sensitive = true
}