-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
55 lines (45 loc) · 1.48 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
variable kubernetes_host {
type = string
description = "The hostname (in form of URI) of Kubernetes master. Can be sourced from KUBE_HOST"
}
variable k8s_client_certificate {
type = string
description = "PEM-encoded client certificate for TLS authentication. Can be sourced from KUBE_CLIENT_CERT_DATA."
}
variable k8s_client_key {
type = string
description = "PEM-encoded client certificate key for TLS authentication. Can be sourced from KUBE_CLIENT_KEY_DATA."
}
variable k8s_cluster_ca_certificate {
type = string
description = "PEM-encoded root certificates bundle for TLS authentication. Can be sourced from KUBE_CLUSTER_CA_CERT_DATA."
}
variable load_config_file {
type = bool
description = "By default the local config (~/.kube/config) is loaded when you use this provider. This option at false disable this behaviour. Can be sourced from KUBE_LOAD_CONFIG_FILE."
default = false
}
variable namespace {
type = string
description = "The target deamonset namespaces"
}
variable console_hostname {
type = string
description = "The console address for defender communication"
}
variable console_username {
type = string
description = "Console username"
}
variable console_password {
type = string
description = "Console password"
}
variable helm_release_name {
type = string
description = "Helm release name"
}
variable chart_name {
type = string
description = "Helm chart name"
}