-
Notifications
You must be signed in to change notification settings - Fork 8
/
terraform.tfvars
56 lines (42 loc) · 982 Bytes
/
terraform.tfvars
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
vault = {
# Number of Vault Nodes in Cluster
nodes = 3
# docker network CIDR
ip_subnet = "172.16.10.0/24"
# Vault Version
version = "1.15"
# baseport where the vault container are exposed to localhost
base_port = 8000
# Number of Keys & Shares during Initialization & Unsealing
initialization = {
shares = 5
threshold = 3
}
}
# Dyanmic DB Credentials
databases = {
enabled = true
# enable mysql db
mysql = true
}
# Minikube Configuration
kubernetes = {
# wether to enable minikube deployment
enabled = true
# enable kms plugin for secret encryption at rest
kms = true
# enable external secrets manager
external_secrets_manager = true
# enable vault secrets operator
vault_secrets_operator = true
# enable secrets using the CSI driver
csi = true
# enable cert manager
cert_manager = true
# enable vault agent injector
vault_agent_injector = true
}
# enable Boundary Lab
boundary = {
enabled = true
}