Hi All,
I am working on 2.4 and encountered the following. Does anyone know how to solve it? Thanks!
Hi All,
I am working on 2.4 and encountered the following. Does anyone know how to solve it? Thanks!
i had the same issue and iâve fixed it.
run this command to check which postgreSQL version are availible in your region: aws rds describe-db-engine-versions --engine postgres --query âDBEngineVersions.EngineVersionâ
then go to terraform/module/vertor-db/rds.tf
find the following:
resource âaws_db_instanceâ âmaster_dbâ {
identifier = â${var.project}-vector-dbâ
allocated_storage = 20
max_allocated_storage = 0
storage_type = âgp2â
engine = âpostgresâ
engine_version = âvalid-versionâ â Updated to a valid version
port = 5432
instance_class = âdb.t3.microâ
db_name = âpostgresâ
username = var.master_username
password = random_id.master_password.id
publicly_accessible = true
skip_final_snapshot = true
db_subnet_group_name = aws_db_subnet_group.vector_db_subnet_group.id
vpc_security_group_ids = [
aws_security_group.vector_db_sg.id
]
}
hope it help