From 0a61160595b4fda39bddc3b472923e394d77297b Mon Sep 17 00:00:00 2001 From: Andy Paine Date: Thu, 10 Mar 2022 10:32:00 +0000 Subject: [PATCH] Upgrade RDS Postgres to 10.19 10.16 is now deprecated in favour of the newer minor releases for 10. We should probably upgrade to 13/14 at some point but this kicks the can down the road a little further --- resource/assets/aws/infrastructure.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/assets/aws/infrastructure.tf b/resource/assets/aws/infrastructure.tf index fdf297061..1179c67d4 100644 --- a/resource/assets/aws/infrastructure.tf +++ b/resource/assets/aws/infrastructure.tf @@ -590,7 +590,7 @@ resource "aws_db_instance" "default" { port = 5432 engine = "postgres" instance_class = "${var.rds_instance_class}" - engine_version = "10.16" + engine_version = "10.19" auto_minor_version_upgrade = false allow_major_version_upgrade = true name = "${var.rds_default_database_name}"