adding new aws cert identifier to db

This commit is contained in:
Khalim Conn-Kowlessar 2024-05-29 11:33:21 +01:00
parent c724fffd05
commit 1c1b7f9e5c

View file

@ -81,6 +81,8 @@ resource "aws_db_instance" "default" {
# We will look to change this in the future but as we are pre-MVP at the time of setting this, we don't
# have major security demand and don't want to set this up now
publicly_accessible = true
# Specify the CA certificate with the default RDS CA certificate
ca_cert_identifier = "rds-ca-rsa2048-g1"
}
# Set up the bucket that recieve the csv uploads of epc to be retrofit
@ -147,7 +149,7 @@ module "route53" {
source = "./modules/route53"
domain_name = var.domain_name
api_url_prefix = var.api_url_prefix
providers = {
providers = {
aws.aws_use1 = aws.aws_use1
}
}