Skip to content

Commit

Permalink
Adding support for ca_cert_identifier for the upcoming RDS cert updat…
Browse files Browse the repository at this point in the history
…e on 5 March 2020 (#91) (#98)
  • Loading branch information
acholt committed Feb 26, 2020
1 parent eda287a commit 2b793d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ resource "aws_rds_cluster_instance" "this" {
promotion_tier = count.index + 1
performance_insights_enabled = var.performance_insights_enabled
performance_insights_kms_key_id = var.performance_insights_kms_key_id
ca_cert_identifier = var.ca_cert_identifier

tags = var.tags
}
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -308,3 +308,9 @@ variable "security_group_description" {
type = string
default = "Managed by Terraform"
}

variable "ca_cert_identifier" {
description = "The identifier of the CA certificate for the DB instance"
type = string
default = "rds-ca-2019"
}

0 comments on commit 2b793d9

Please sign in to comment.