Skip to content

Commit c7efb05

Browse files
committed
fix: Update Aurora PostgreSQL version from 15.4 to 15.8 for regional compatibility
- Version 15.4 is not available in all AWS regions (e.g., us-east-1) - Update to version 15.8 which is stable and widely available - VER_15_8 constant is compatible with older CDK versions - Tested successfully in us-east-1 - No breaking changes expected (minor version upgrade within same major version)
1 parent a562d54 commit c7efb05

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_4)
68+
rds_engine = aws_rds.DatabaseClusterEngine.aurora_postgres(version=aws_rds.AuroraPostgresEngineVersion.VER_15_8)
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)