Skip to content

Commit 9e16169

Browse files
committed
Update to PostgreSQL 15.14 (latest in 15.x series)
- 15.14 includes latest security patches and bug fixes - Fully backward compatible with 15.8 - Available across all AWS regions
1 parent cd47439 commit 9e16169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langfuse-v3/cdk_stacks/aurora_postgresql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self, scope: Construct, construct_id: str, vpc, **kwargs) -> None:
6565
)
6666
rds_credentials = aws_rds.Credentials.from_secret(db_secret)
6767

68-
rds_engine = aws_rds.DatabaseClusterEngine.aurora_postgres(version=aws_rds.AuroraPostgresEngineVersion.VER_15_8)
68+
rds_engine = aws_rds.DatabaseClusterEngine.aurora_postgres(version=aws_rds.AuroraPostgresEngineVersion.VER_15_14)
6969

7070
#XXX: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Reference.ParameterGroups.html#AuroraPostgreSQL.Reference.Parameters.Cluster
7171
rds_cluster_param_group = aws_rds.ParameterGroup(self, 'AuroraPostgreSQLClusterParamGroup',

0 commit comments

Comments
 (0)