-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
86 lines (73 loc) · 1.85 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
variable "fqdn" {
type = string
description = "The fully qualified domain name for the resources."
}
variable "namespace" {
type = string
description = "The name prefix for all resources created."
}
variable "postgres_tier" {
description = "The tier for the Postgres instance"
type = string
default = "db-custom-2-7680"
}
variable "postgres_version" {
description = "The version for the Postgres instance"
type = string
default = "POSTGRES_17"
}
variable "redis_tier" {
description = "The tier for the Redis instance"
type = string
default = "STANDARD_HA"
}
variable "redis_memory_size_gb" {
description = "The memory size for the Redis instance"
type = number
default = 1
}
variable "redis_rdb_snapshot_period" {
description = "The snapshot period for the Redis instance."
type = string
default = "ONE_HOUR"
}
variable "deletion_protection" {
description = "Whether to enable deletion protection for the resources."
type = bool
default = true
}
variable "domains" {
description = "The domains to use for the SSL certificate."
type = list(string)
}
variable "google_auth" {
type = object({
client_id = string
client_secret = string
})
description = "The Google OAuth client ID and secret."
}
variable "chart_version" {
type = string
default = "0.2.8"
}
variable "github_bot" {
type = object({
name = string
app_id = string
client_id = string
client_secret = string
client_private_key = string
webhook_secret = string
})
description = "The GitHub bot user and token."
default = null
}
variable "helm_values" {
type = any
default = { otel = { install = true } }
}
variable "deploy_helm_release" {
type = bool
default = true
}