Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit bcc8776

Browse files
committed
infra: upgrade PG 9.6 -> 12.5
1 parent 583a109 commit bcc8776

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

infra/postgres.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ resource "aws_db_instance" "default" {
22
allocated_storage = 20
33
storage_type = "gp2"
44
engine = "postgres"
5-
engine_version = "9.6"
5+
engine_version = "12.5"
66
instance_class = "db.t2.small"
77
name = "deckdeckgo"
88
username = "deckdeckgo"
99
password = data.external.postgres-password.result.postgres-password
1010
skip_final_snapshot = true
11+
allow_major_version_upgrade = true
1112
}
1213

1314
# TODO: terraform-provider-secret

0 commit comments

Comments
 (0)