-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathvariables.tf
More file actions
73 lines (59 loc) · 1.03 KB
/
variables.tf
File metadata and controls
73 lines (59 loc) · 1.03 KB
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
variable "node_pool" {
type = string
}
variable "update_stanza" {
type = bool
}
variable "environment" {
type = string
}
variable "image" {
type = string
}
variable "count_instances" {
type = number
}
variable "postgres_connection_string" {
type = string
sensitive = true
}
variable "auth_db_connection_string" {
type = string
sensitive = true
}
variable "auth_db_read_replica_connection_string" {
type = string
sensitive = true
default = ""
}
variable "clickhouse_connection_string" {
type = string
sensitive = true
}
variable "supabase_jwt_secrets" {
type = string
sensitive = true
}
variable "otel_collector_grpc_port" {
type = number
default = 4317
}
variable "redis_url" {
type = string
sensitive = true
}
variable "redis_cluster_url" {
type = string
sensitive = true
}
variable "redis_tls_ca_base64" {
type = string
sensitive = true
default = ""
}
variable "logs_proxy_port" {
type = object({
name = string
port = number
})
}