Skip to content

Commit

Permalink
465 - Update Aurora default Parameter Group to 'default.aurora-postgr…
Browse files Browse the repository at this point in the history
…esql11'. (#466)

### Feature or Bugfix
- Bugfix

### Detail
- Update Aurora default Parameter Group to
'default.aurora-postgresql11'. Fixes an issue where the Aurora nested
stack deploy in the data.all backend deploy would fail and/or block
indefinitely due to 'default.aurora-postgresql10' mismatch with version
11 of the Aurora database engine.

### Relates
- #465

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.

Authored-by: rbernota <rbernota@yahooinc.com>
  • Loading branch information
rbernotas authored May 22, 2023
1 parent 3b85ad2 commit 3097a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/stacks/aurora.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __init__(
deletion_protection=True,
cluster_identifier=f'{resource_prefix}-{envname}-db',
parameter_group=rds.ParameterGroup.from_parameter_group_name(
self, 'ParameterGroup', 'default.aurora-postgresql10'
self, 'ParameterGroup', 'default.aurora-postgresql11'
),
enable_data_api=True,
default_database_name=f'{envname}db',
Expand Down

0 comments on commit 3097a3a

Please sign in to comment.