Skip to content

Commit 7deda6a

Browse files
committed
chore: update min_capacity for VectorDB clusters and bump PostgreSQL engine version
- Changed min_capacity from 2 to 0.5 for all VectorDB clusters in vectordb_prod.tf. - Updated PostgreSQL engine version from 16.4 to 16.6 in the postgres_cluster module.
1 parent ba679ac commit 7deda6a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

terraform/modules/postgres_cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "aurora" {
2727
}
2828

2929
engine = "aurora-postgresql"
30-
engine_version = "16.4"
30+
engine_version = "16.6"
3131
engine_mode = "provisioned"
3232

3333
availability_zones = var.availability_zones

terraform/vectordb_prod.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "vectordb_prod_eu_central_1" {
1111
clusters = {
1212
amazeeai-de103-vectordb1 = {
1313
instance_count = 2
14-
min_capacity = 2
14+
min_capacity = 0.5
1515
max_capacity = 16
1616
backup_window = "06:42-07:12"
1717
maintenance_window = "wed:04:35-wed:05:05"
@@ -35,7 +35,7 @@ module "vectordb_prod_eu_central_2" {
3535
clusters = {
3636
amazeeai-ch103-vectordb1 = {
3737
instance_count = 2
38-
min_capacity = 2
38+
min_capacity = 0.5
3939
max_capacity = 16
4040
backup_window = "06:42-07:12"
4141
maintenance_window = "wed:04:35-wed:05:05"
@@ -58,7 +58,7 @@ module "vectordb_prod_us_east_1" {
5858
clusters = {
5959
amazeeai-us103-vectordb1 = {
6060
instance_count = 2
61-
min_capacity = 2
61+
min_capacity = 0.5
6262
max_capacity = 16
6363
backup_window = "06:42-07:12"
6464
maintenance_window = "wed:04:35-wed:05:05"
@@ -81,7 +81,7 @@ module "vectordb_prod_eu_west_2" {
8181
clusters = {
8282
amazeeai-uk103-vectordb1 = {
8383
instance_count = 2
84-
min_capacity = 2
84+
min_capacity = 0.5
8585
max_capacity = 16
8686
backup_window = "06:42-07:12"
8787
maintenance_window = "wed:04:35-wed:05:05"
@@ -105,7 +105,7 @@ module "vectordb_prod_ap_southeast_2" {
105105
clusters = {
106106
amazeeai-au103-vectordb1 = {
107107
instance_count = 2
108-
min_capacity = 2
108+
min_capacity = 0.5
109109
max_capacity = 16
110110
backup_window = "06:42-07:12"
111111
maintenance_window = "wed:04:35-wed:05:05"

0 commit comments

Comments
 (0)