Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "16.1"
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 = "16.1"
instance_class = "db.t3.micro"
allow_major_version_upgrade = true
username = "dinopark"
Expand Down
Loading