Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Commit

Permalink
Bump the RDS Postgres engine version and RDS root CA
Browse files Browse the repository at this point in the history
It doesn't appear that the `self-service` Rails app is verifying the
certificate RDS presents so we should be good to just start presenting
the new one.
  • Loading branch information
samcrang committed Feb 3, 2020
1 parent 78abc86 commit 5d9767b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/modules/self-service/db.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resource "aws_db_instance" "self_service" {
name = "selfservice"
engine = "postgres"
engine_version = "10.6"
engine_version = "10.10"
storage_type = "gp2"

instance_class = var.db_instance_class
Expand Down Expand Up @@ -32,7 +32,7 @@ resource "aws_db_instance" "self_service" {
iam_database_authentication_enabled = true
apply_immediately = true

ca_cert_identifier = "rds-ca-2015"
ca_cert_identifier = "rds-ca-2019"

lifecycle {
prevent_destroy = true
Expand Down

0 comments on commit 5d9767b

Please sign in to comment.