Skip to content

Commit

Permalink
Upgrade CA Certificate for RDS instance. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 authored Aug 8, 2024
1 parent 9ce9b17 commit cd116ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# 0.1.0 (Unreleased)
* Initial draft
5 changes: 5 additions & 0 deletions db.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
locals {
ca_cert_identifier = "rds-ca-rsa2048-g1"
}

resource "aws_rds_cluster_instance" "cluster_instances" {
count = var.instance_count
identifier = "${local.resource_name}-instance-${count.index}"
cluster_identifier = aws_rds_cluster.this.id
instance_class = var.instance_class
engine = aws_rds_cluster.this.engine
engine_version = aws_rds_cluster.this.engine_version
ca_cert_identifier = local.ca_cert_identifier

performance_insights_enabled = var.enable_performance_insights
}
Expand Down

0 comments on commit cd116ad

Please sign in to comment.