-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
40 lines (40 loc) · 962 Bytes
/
vars.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
variable namespace {
description = "Namespace to deploy Vault"
default = "default"
}
variable appLabel {
description = "App label to use as a selector"
default = "vault"
}
variable containerHttpPort {
description = "HTTP Port"
default = "8200"
}
variable containerClusterPort {
description = "Cluster Port"
default = "8201"
}
variable serviceType {
description = "Service type to expose Vault"
default = "ClusterIP"
}
variable numberOfReplicas {
description = "Number of Replicas"
default = "1"
}
variable image {
description = "Container image and tag"
default = "vault:1.2.3"
}
variable dataStorageSize {
description = "Size of disk for data in Vault"
default = "1Gi"
}
variable vault_request_cpu {
description = "Kubernetes CPU Request for Vault pods"
default = "500m"
}
variable vault_request_memory {
description = "Kubernetes Memory Request for Vault pods"
default = "256Mi"
}