forked from nehrman/medium-kubernetes-pkiaas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
59 lines (48 loc) · 1.29 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
variable "vault_token" {
description = "Token for connectiong to Vault"
default = ""
}
variable "vault_addr" {
description = "Vault Address to connect to"
default = "192.168.94.141:8200"
}
variable "default_namespace" {
description = "Namespace where to deploy things on K8s"
default = "default"
}
variable "cert_manager_namespace" {
description = "Namespace where to deploy things on K8s"
default = "cert-manager"
}
variable "fruits_namespace" {
description = "Namespace where to deploy things on K8s"
default = "fruits-catalog"
}
variable "vault_k8s_bck_path" {
description = "Namespace where to deploy things on K8s"
default = "minikube"
}
variable "name" {
description = "Name of the certificate configuration"
default = "fruits-certificate"
}
variable "secretname" {
description = "Name of the K8s secret"
default = "fruits-certificate"
}
variable "commonname" {
description = "Common Name used for certificates"
default = "testlab.local"
}
variable "dns_names" {
description = "Dns Names used for certificates"
default = "fruits"
}
variable "database_name" {
description = "MongoDB Database name"
default = "sampledb"
}
variable "database_user" {
description = "MongoDB Database username"
default = "userEVY"
}