-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
76 lines (65 loc) · 1.62 KB
/
main.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
variable "db_volume_claim" {
type = string
}
variable "namespace" {
type = string
}
variable "instance_name" {
type = string
}
variable "topology_zone" {
type = string
}
variable "is_blockfrost_backend" {
type = bool
}
variable "postgres_image_tag" {
type = string
}
variable "postgres_config_name" {
default = "postgres-config"
}
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_settings" {
default = {
listen_addresses = "*"
max_connections = 101
shared_buffers = "12GB"
effective_cache_size = "36GB"
maintenance_work_mem = "2GB"
checkpoint_completion_target = 0.9
wal_buffers = "16MB"
default_statistics_target = 500
random_page_cost = 1.1
effective_io_concurrency = 200
work_mem = "15728kB"
huge_pages = "try"
min_wal_size = "4GB"
max_wal_size = "16GB"
max_worker_processes = 8
max_parallel_workers_per_gather = 4
max_parallel_workers = 8
max_parallel_maintenance_workers = 4
ssl = "off"
shared_preload_libraries = "pg_stat_statements"
max_pred_locks_per_transaction = 256
}
}