Skip to content

Commit

Permalink
chore: update postgres version to 16 (#5862)
Browse files Browse the repository at this point in the history
Updates Postgres version of addon to current latest.

Fixes #5860

(You can confirm available Postgres versions via `aws rds describe-db-engine-versions --engine aurora-postgresql`)

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.
  • Loading branch information
gidsg authored Jul 1, 2024
1 parent 204bdba commit 36da4af
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Resources:
Parameters:
character_set_client: 'utf8'
{{- else}}
Family: 'aurora-postgresql14'
Family: 'aurora-postgresql16'
Parameters:
client_encoding: 'UTF8'
{{- end}}
Expand All @@ -104,7 +104,7 @@ Resources:
EngineVersion: '8.0.mysql_aurora.3.06.0'
{{- else}}
Engine: 'aurora-postgresql'
EngineVersion: '14.4'
EngineVersion: '16.2'
{{- end}}
DBClusterParameterGroupName: {{- if .ParameterGroup}} {{.ParameterGroup}} {{- else}} !Ref {{logicalIDSafe .ClusterName}}DBClusterParameterGroup {{- end}}
DBSubnetGroupName: !Ref {{logicalIDSafe .ClusterName}}DBSubnetGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Resources:
Parameters:
character_set_client: 'utf8'
{{- else}}
Family: 'aurora-postgresql14'
Family: 'aurora-postgresql16'
Parameters:
client_encoding: 'UTF8'
{{- end}}
Expand All @@ -125,7 +125,7 @@ Resources:
EngineVersion: '8.0.mysql_aurora.3.06.0'
{{- else}}
Engine: 'aurora-postgresql'
EngineVersion: '14.4'
EngineVersion: '16.2'
{{- end}}
DBClusterParameterGroupName: {{- if .ParameterGroup}} {{.ParameterGroup}} {{- else}} !Ref {{logicalIDSafe .ClusterName}}DBClusterParameterGroup {{- end}}
DBSubnetGroupName: !Ref {{logicalIDSafe .ClusterName}}DBSubnetGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Resources:
Parameters:
character_set_client: 'utf8'
{{- else}}
Family: 'aurora-postgresql14'
Family: 'aurora-postgresql16'
Parameters:
client_encoding: 'UTF8'
{{- end}}
Expand All @@ -134,7 +134,7 @@ Resources:
EngineVersion: '8.0.mysql_aurora.3.06.0'
{{- else}}
Engine: 'aurora-postgresql'
EngineVersion: '14.4'
EngineVersion: '16.2'
{{- end}}
DBClusterParameterGroupName: {{- if .ParameterGroup}} {{.ParameterGroup}} {{- else}} !Ref {{logicalIDSafe .ClusterName}}DBClusterParameterGroup {{- end}}
DBSubnetGroupName: !Ref {{logicalIDSafe .ClusterName}}DBSubnetGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Resources:
Parameters:
character_set_client: 'utf8'
{{- else}}
Family: 'aurora-postgresql14'
Family: 'aurora-postgresql16'
Parameters:
client_encoding: 'UTF8'
{{- end}}
Expand All @@ -123,7 +123,7 @@ Resources:
EngineVersion: '8.0.mysql_aurora.3.06.0'
{{- else}}
Engine: 'aurora-postgresql'
EngineVersion: '14.4'
EngineVersion: '16.2'
{{- end}}
DBClusterParameterGroupName: {{- if .ParameterGroup}} {{.ParameterGroup}} {{- else}} !Ref {{logicalIDSafe .ClusterName}}DBClusterParameterGroup {{- end}}
DBSubnetGroupName: !Ref {{logicalIDSafe .ClusterName}}DBSubnetGroup
Expand Down

0 comments on commit 36da4af

Please sign in to comment.