generated from bayudwiyansatria/projects
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
79 lines (70 loc) · 2.33 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
#---------------------------------------------------------------------------------------------------
# Kubernetes
#---------------------------------------------------------------------------------------------------
variable "kubernetes_namespace" {
sensitive = false
type = string
description = "Kubernetes Namespace"
default = "mongodb"
}
variable "helm_release_name" {
sensitive = false
type = string
description = "Helm Release Name"
default = "mongodb"
}
#---------------------------------------------------------------------------------------------------
# Storage
#---------------------------------------------------------------------------------------------------
variable "kubernetes_storage_class" {
sensitive = false
type = string
description = "Kubernetes Storage Class"
default = ""
}
variable "kubernetes_storage_allocation_size_config" {
sensitive = false
type = string
description = "MongoDB Storage Config Server Allocation Size"
default = "8Gi"
}
variable "kubernetes_storage_allocation_size_shard" {
sensitive = false
type = string
description = "MongoDB Storage Shard Server Allocation Size"
default = "8Gi"
}
#---------------------------------------------------------------------------------------------------
# MongoDB
#---------------------------------------------------------------------------------------------------
variable "mongodb_version" {
sensitive = false
type = string
description = "MongoDB version"
default = "4.4.11"
}
variable "mongodb_router_count" {
sensitive = false
type = number
description = "Total Mongos"
default = 1
}
variable "mongodb_config_count" {
sensitive = false
type = number
description = "Total MongoDB Config Server"
default = 1
}
variable "mongodb_server_count" {
sensitive = false
type = number
description = "Total MongoDB Server"
default = 1
}
#---------------------------------------------------------------------------------------------------
# Authentication
#---------------------------------------------------------------------------------------------------
variable "mongodb_password" {
sensitive = true
description = "MongoDB Password"
}