Skip to content

Commit

Permalink
fix(infra): set portgres version to 14 to avoid downgrade errors and …
Browse files Browse the repository at this point in the history
…ensure latest minor updates (#2169)

* fix(infra): set portgres version to 14 to avoid downgrade errors and ensure latest minor updates

* fix(infra): set portgres version to 14 to avoid downgrade errors and ensure latest minor updates
  • Loading branch information
bocklag authored Oct 14, 2024
1 parent c7a9e2d commit 744a7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/infra/production/storage/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ resource "random_password" "postgres_password" {
resource "aws_db_instance" "postgres" {
db_name = "codedang_db"
engine = "postgres"
engine_version = "14.10"
engine_version = "14"
allocated_storage = 5
instance_class = "db.t4g.small"

Expand Down

0 comments on commit 744a7dc

Please sign in to comment.