Skip to content

Commit

Permalink
Fix for CKV_AWS_66
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Nov 10, 2023
1 parent 74d6c35 commit d86b09b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudwatch.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
resource "aws_cloudwatch_log_group" "slow_log" {
name = "/elasticache/${aws_elasticache_replication_group.app4.replication_group_id}/slow-log"
retention_in_days = 30
retention_in_days = 365
kms_key_id = aws_kms_key.encrytion_rest.id
}
resource "aws_cloudwatch_log_group" "engine_log" {
name = "/elasticache/${aws_elasticache_replication_group.app4.replication_group_id}/engine-log"
retention_in_days = 30
retention_in_days = 365
kms_key_id = aws_kms_key.encrytion_rest.id
}

0 comments on commit d86b09b

Please sign in to comment.