Skip to content

Commit

Permalink
Merge pull request #24 from DNXLabs/feature/#103_enable_aurora_storag…
Browse files Browse the repository at this point in the history
…e_encryption

Enable aurora cluster storage encryption
  • Loading branch information
caiovfernandes authored Feb 20, 2023
2 parents 51dd490 + 2ea1179 commit 4bb5a51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aurora.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ resource "aws_rds_cluster" "aurora_cluster" {
vpc_security_group_ids = [aws_security_group.rds_db.id]
db_cluster_parameter_group_name = var.create_cluster_parameter_group == true ? aws_rds_cluster_parameter_group.custom_cluster_pg[count.index].name : ""
apply_immediately = var.apply_immediately
storage_encrypted = var.storage_encrypted
kms_key_id = var.kms_key_arn
}

resource "aws_rds_cluster_instance" "cluster_instances" {
Expand Down

0 comments on commit 4bb5a51

Please sign in to comment.