Skip to content

Commit

Permalink
Update Postgres Version (#206)
Browse files Browse the repository at this point in the history
* update apiVersion

* Redo Workflows

* Update postgres version to 11.19 universally

* Update version in github workflows

* Revert github workflows docker version

---------

Co-authored-by: Pranav Phadke <[email protected]>
  • Loading branch information
Lucas-Dunker and pranavphadke1 authored Oct 25, 2023
1 parent bbd01cf commit cdce629
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/dev/docker-compose-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
postgresql:
image: postgres:11.17-bullseye
image: postgres:11.19-bullseye
ports:
- 5432:5432
volumes:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
postgresql:
image: postgres:11.17-bullseye
image: postgres:11.19-bullseye
ports:
- 5432:5432
volumes:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/terraform/modules/course-catalog-api/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aws_db_instance" "default" {
identifier = module.label.id
allocated_storage = 20
engine = "postgres"
engine_version = "11.17"
engine_version = "11.19"
instance_class = "db.t3.small"
db_name = replace(module.label.name, module.label.delimiter, "")
username = "postgres"
Expand Down

0 comments on commit cdce629

Please sign in to comment.