Skip to content

Commit

Permalink
chore Upgrade to Postgres 12.17 (test+prod)
Browse files Browse the repository at this point in the history
Dev is already ahead of the game by being on 16.2:

```
; kubectl --context iam-dev exec -it dino-park-packs-pg-deployment-56b7dd5b49-gd688 -- postgres --version
postgres (PostgreSQL) 16.2 (Debian 16.2-1.pgdg120+2)
```

Jira: IAM-1502
  • Loading branch information
bheesham committed Dec 12, 2024
1 parent 3ade10a commit 9aeec07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/prod/db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_db_instance" "dino_park_packs_db" {
max_allocated_storage = 100
storage_type = "gp2"
engine = "postgres"
engine_version = "11.22"
engine_version = "12.17"
instance_class = "db.t3.micro"
allow_major_version_upgrade = true
username = "dinopark"
Expand Down
2 changes: 1 addition & 1 deletion terraform/test/db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_db_instance" "dino_park_packs_db" {
max_allocated_storage = 100
storage_type = "gp2"
engine = "postgres"
engine_version = "11.22"
engine_version = "12.17"
instance_class = "db.t3.micro"
allow_major_version_upgrade = true
username = "dinopark"
Expand Down

0 comments on commit 9aeec07

Please sign in to comment.