Skip to content

Commit

Permalink
Merge pull request #184 from ivanmartos/fix/rdsClustedDeletionProtect…
Browse files Browse the repository at this point in the history
…ionEnabled

fix: rds cluster deletion protection rule
  • Loading branch information
rpdelaney committed Jul 10, 2023
2 parents 2189015 + 1079221 commit d50d890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config-rules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -869,11 +869,11 @@ resource "aws_config_config_rule" "rds-snapshot-encrypted" {
resource "aws_config_config_rule" "rds-cluster-deletion-protection-enabled" {
count = var.check_rds_cluster_deletion_protection_enabled ? 1 : 0
name = "rds-cluster-deletion-protection-enabled"
description = "Checks whether Amazon Relational Database Service (Amazon RDS) DB snapshots are encrypted. The rule is NON_COMPLIANT, if the Amazon RDS DB snapshots are not encrypted."
description = "Checks if an Amazon Relational Database Service (Amazon RDS) cluster has deletion protection enabled. The rule is NON_COMPLIANT if an Amazon RDS cluster does not have deletion protection enabled."

source {
owner = "AWS"
source_identifier = "RDS_SNAPSHOT_ENCRYPTED"
source_identifier = "RDS_CLUSTER_DELETION_PROTECTION_ENABLED"
}

tags = var.tags
Expand Down

0 comments on commit d50d890

Please sign in to comment.