-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
114 lines (96 loc) · 2.09 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
variable "namespace" {
type = string
}
variable "salt" {
type = string
description = "Salt used to identify all components as part of the cell. Should be unique between cells."
}
variable "certs_configmap_name" {
type = string
default = "pgbouncer-certs"
}
// PVC
variable "volume_name" {
type = string
}
variable "storage_size" {
type = string
}
variable "db_volume_claim" {
type = string
default = null
}
// Postgres
variable "topology_zone" {
type = string
}
variable "is_blockfrost_backend" {
type = bool
}
variable "postgres_image_tag" {
type = string
}
variable "postgres_resources" {
type = object({
requests = map(string)
limits = map(string)
})
default = {
"limits" = {
memory = "2Gi"
cpu = "4000m"
}
"requests" = {
memory = "2Gi"
cpu = "100m"
}
}
}
variable "postgres_secret_name" {
type = string
}
variable "postgres_config_name" {
type = string
default = null
}
// PGBouncer
variable "pgbouncer_image_tag" {
default = "1.21.0"
}
variable "pgbouncer_replicas" {
default = 1
}
variable "pgbouncer_auth_user_password" {
type = string
}
variable "pgbouncer_reloader_image_tag" {
type = string
}
// Instance
variable "instances" {
type = map(object({
salt = optional(string)
network = string
dbsync_image = optional(string)
dbsync_image_tag = string
node_n2n_tcp_endpoint = string
release = string
sync_status = string
enable_postgrest = bool
availability_sla = optional(string)
compute_profile = optional(string)
compute_arch = optional(string)
topology_zone = optional(string)
empty_args = optional(bool, false)
custom_config = optional(bool, true)
network_env_var = optional(string, false)
dbsync_resources = optional(object({
requests = map(string)
limits = map(string)
}))
dbsync_volume = optional(object({
storage_class = string
size = string
}))
}))
}