-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
57 lines (50 loc) · 1.16 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
variable "kubeconfig" {
default = "~/.kube/config"
}
variable "name" {
type = string
default = "vault"
description = "name of vault server instance"
}
variable "namespace" {
type = string
default = "default"
description = "namespace to deploy Vault Server, must already exist"
}
variable "replicas" {
type = number
default = 3
description = "number of replicase for the Vault Server"
}
variable "vault_server_version" {
type = string
default = "1.12.1"
description = "name of the vault version CR to use"
}
variable "termination_policy" {
type = string
default = "WipeOut"
description = "termination policy for the vaut server"
}
variable "allowed_secret_engines" {
type = object({
namespaces_from = string
secret_engines = list(string)
})
default = {
namespaces_from = "All"
secret_engines = ["gcp"]
}
description = "allowed secret engines parameters"
}
variable "raft" {
type = object({
storage = string
storage_class = string
})
default = {
storage = "1Gi"
storage_class = "standard"
}
description = "raft storage parameters"
}