@@ -34,6 +34,9 @@ module "braintrust-data-plane" {
34
34
# PostgreSQL engine version for the RDS instance.
35
35
# postgres_version = "15.7"
36
36
37
+ # Multi-AZ RDS instance. Enabling increases cost but provides higher availability. Recommended for production environments.
38
+ # postgres_multi_az = true
39
+
37
40
# ## Brainstore configuration
38
41
# Enable Brainstore for faster analytics
39
42
enable_brainstore = false
@@ -59,10 +62,10 @@ module "braintrust-data-plane" {
59
62
# ## Network configuration
60
63
# CIDR block for the VPC. You might need to adjust this so it does not conflict with any
61
64
# other VPC CIDR blocks you intend to peer with Braintrust
62
- # vpc_cidr = "10.175.0.0/16 "
65
+ # vpc_cidr = "10.175.0.0/21 "
63
66
64
67
# CIDR block for the Quarantined VPC. This is used to run user defined functions in an isolated environment.
65
- # quarantine_vpc_cidr = "10.176.0 .0/16 "
68
+ # quarantine_vpc_cidr = "10.175.8 .0/21 "
66
69
67
70
# ## Advanced configuration
68
71
# The number API Handler instances to provision and keep alive. This reduces cold start times and improves latency, with some increase in cost.
@@ -83,11 +86,4 @@ module "braintrust-data-plane" {
83
86
# The time frame in minutes over which rate per-user rate limits are accumulated
84
87
# outbound_rate_limit_window_minutes = 1
85
88
86
- # Existing KMS key ARN to use for encrypting resources. If not provided, a new key will be created.
87
- # DO NOT change this after deployment. If you do it will attempt to destroy your DB and prior S3 objects will no longer be readable.
88
- # kms_key_arn = null
89
-
90
- # Enable the Quarantine VPC to run user defined functions in an isolated environment. If disabled, user defined functions will not be available.
91
- # enable_quarantine_vpc = true
92
-
93
89
}
0 commit comments