-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables-cluster.tf
62 lines (52 loc) · 1.41 KB
/
variables-cluster.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
## Cluster type specific variables
## Copy to toplevel
variable "generic_post_create" {
description = "Scripts to execute after cluster is created."
type = list(string)
default = []
}
variable "api_endpoint" {
description = "Kubernetes API endpoint (Informative only)"
type = string
default = ""
}
variable "region" {
description = "Cluster Region"
type = string
default = "unknown"
}
variable "cluster_type" {
description = "Overrides cluster type"
type = string
default = "generic"
}
variable "get_kubeconfig_command" {
description = "Command to create/update kubeconfig"
type = string
default = "true"
}
variable "install_on_okd" {
description = "Apply all required patches to install on OKD (Openshift)"
type = bool
default = false
}
variable "kubeconfig_client_certificate_data" {
description = "Kubeconfig Cluster Client Certificate Data"
type = string
default = null
}
variable "kubeconfig_client_key_data" {
description = "Kubeconfig Cluster Client Certificate Key Data"
type = string
default = null
}
variable "kubeconfig_client_token" {
description = "Kubeconfig Client Auth Token"
type = string
default = null
}
variable "kubeconfig_cluster_certificate_authority_data" {
description = "Kubeconfig Cluster CA Certificate"
type = string
default = null
}