Skip to content

Commit

Permalink
Update 03-rds.yaml
Browse files Browse the repository at this point in the history
I get this error when I try to run the template: The Parameter Group default.aurora-postgresql11 with DBParameterGroupFamily aurora-postgresql11 cannot be used for this instance. Please use a Parameter Group with DBParameterGroupFamily aurora-postgresql12 (Service: AmazonRDS; Status Code: 400; Error Code: InvalidParameterCombination; Request ID: d4985bb8-ed41-4b47-99ca-47000cd846f6; Proxy: null)
It working once ytou change the DBClusterParameterGroupName to default.aurora-postgresql12
  • Loading branch information
StephaniePar authored Dec 2, 2021
1 parent a02efd6 commit c275835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/03-rds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Resources:
DatabaseName: !Ref DatabaseName
DBSubnetGroupName: !Ref DataSubnetGroup
Engine: aurora-postgresql
DBClusterParameterGroupName: default.aurora-postgresql11
DBClusterParameterGroupName: default.aurora-postgresql12

This comment has been minimized.

Copy link
@gustaffvho

gustaffvho Mar 22, 2022

##Change version aurora-postgresql to from 12 to 13
default.aurora-postgresql13

KmsKeyId:
!If [ UseAWS-ManagedCMK, !Ref 'AWS::NoValue', !Ref DatabaseCmk ]
MasterUsername: !Join ['', ['{{resolve:secretsmanager:', !Ref MyRDSInstanceSecretArn, ':SecretString:username}}' ]]
Expand Down

0 comments on commit c275835

Please sign in to comment.