Skip to content

Commit

Permalink
Add ca_cert_identifier input for aurora
Browse files Browse the repository at this point in the history
  • Loading branch information
Tolu-SourceFuse committed Feb 22, 2024
1 parent 2c19349 commit a0a74d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ module "aurora_cluster" {

vpc_security_group_ids = var.vpc_security_group_ids
kms_key_arn = var.kms_key_arn
ca_cert_identifier = var.rds_instance_ca_cert_identifier
ca_cert_identifier = var.aurora_ca_cert_identifier

# reference iam role created above
rds_monitoring_role_arn = aws_iam_role.enhanced_monitoring.arn
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ variable "aurora_engine_version" {
default = "14.5" // "aurora-postgresql14.5"
}

variable "aurora_ca_cert_identifier" {
type = string
description = "The identifier of the CA certificate for the Aurora DB instance"
default = null
}

variable "aurora_allow_major_version_upgrade" {
type = bool
default = false
Expand Down

0 comments on commit a0a74d5

Please sign in to comment.