-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
88 lines (74 loc) · 1.63 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
variable "host" {
type = string
description = "The host"
}
variable "tls_issuer_name" {
type = string
description = "The name of the certificat issuer to use"
}
variable "tls_issuer_kind" {
type = string
description = "The kind of the certificat issuer to use (Issuer or ClusterIssuer)"
}
variable "chart" {
type = string
description = "(Optional) The Helm chart"
default = "theidserver"
}
variable "chart_version" {
type = string
description = "(Optional) The Helm chart version"
default = "4.8.0"
}
variable "namespace" {
type = string
description = "(Optional) Kubernetes namespace"
default = "theidserver"
}
variable "create_namespace" {
type = bool
description = "(Optional) Creates the kubernetes namespace if not exists"
default = true
}
variable "release_name" {
type = string
description = "(Optional) Helm release name"
default = "theidserver"
}
variable "reuse_values" {
type = bool
description = "(Optional) reuse value for helm chart"
default = false
}
variable "recreate_pods" {
type = bool
description = "(Optional) recreate pods"
default = false
}
variable "wait" {
type = bool
description = "(Optional) Wait for helm release to be ready"
default = true
}
variable "replica_count" {
type = number
description = "(Optional) Number of server pod"
default = 3
}
variable "env_settings" {
type = map(string)
description = "Env var setting"
sensitive = true
default = {}
}
variable "override_settings" {
type = any
description = "Override helm settings"
default = {}
}
variable "image" {
type = map(string)
description = "The docker image"
default = {
}
}