Skip to content

Commit 66455a4

Browse files
committed
Use VER_15_8 for better CDK version compatibility
- VER_15_14 constant not available in older CDK versions - VER_15_8 is widely available and includes important fixes - Still addresses regional availability issue
1 parent 9e16169 commit 66455a4

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_14)
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)