forked from reductoai/reducto-onprem-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
102 lines (80 loc) · 2.02 KB
/
Copy pathvariables.tf
File metadata and controls
102 lines (80 loc) · 2.02 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
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
variable "region" {
default = "us-east-1"
}
variable "cluster_name" {
default = "reducto-ai"
}
variable "vpc_cidr" {
default = "10.125.0.0/16"
}
variable "private_subnets" {
description = "List of private subnets CIDRs"
type = list(string)
default = []
}
variable "public_subnets" {
description = "List of public subnets CIDRs"
type = list(string)
default = []
}
variable "cluster_endpoint_public_access" {
type = bool
default = true
}
variable "cluster_endpoint_public_access_cidrs" {
type = list(string)
default = ["0.0.0.0/0"]
}
variable "db_instance_class" {
type = string
description = "Instance class for Reducto Postgres database"
default = "db.t4g.medium"
}
variable "db_multi_az" {
default = true
}
variable "db_deletion_protection" {
default = true
}
variable "db_username" {
default = "reducto"
description = "Postgres DB username"
}
variable "reducto_helm_repo_username" {
description = "Username for Helm Registry for Reducto Helm Chart"
}
variable "reducto_helm_repo_password" {
sensitive = true
description = "Password for Helm Registry for Reducto Helm Chart"
}
variable "reducto_helm_chart_version" {
description = "Reducto Helm Chart version"
default = "1.11.51"
}
variable "reducto_helm_chart" {
description = "Path to Helm Chart on OCI registry"
default = "oci://registry.reducto.ai/reducto-api/reducto"
}
variable "reducto_host" {
description = "Full host DNS for Reducto (Example: reducto.mydomain.com)"
}
variable "openai_api_key" {
sensitive = true
}
variable "reducto_nlb_cert_arn" {
description = "ARN of the SSL certificate for the NLB"
type = string
}
variable "logfire_environment" {
description = "Environment name for logfire (dev or prod)"
type = string
}
variable "logfire_token" {
description = "API token for logfire observability"
type = string
}
variable "datadog_site" {
description = "Datadog site URL"
type = string
default = "datadoghq.com"
}