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 (terraform-aws-modules#91)
  • Loading branch information
acholt authored and magichair committed Jan 14, 2020
1 parent 8e758a6 commit c2fd9aa
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 @@ -96,6 +96,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 @@ -307,3 +307,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 c2fd9aa

Please sign in to comment.