Skip to content

Commit

Permalink
corrected type
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Nov 10, 2023
1 parent a0db5ed commit 1f2dd76
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions elasticache.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ resource "aws_elasticache_replication_group" "app4" {
security_group_ids = [aws_security_group.elasticache.id]
log_delivery_configuration {
destination = aws_cloudwatch_log_group.slow_log.name
destination_type = cloudwatch-logs
log_format = json
log_type = slow-log
destination_type = "cloudwatch-logs"
log_format = "json"
log_type = "slow-log"
}
log_delivery_configuration {
destination = aws_cloudwatch_log_group.engine_log.name
destination_type = cloudwatch-logs
log_format = json
log_type = engine-log
destination_type = "cloudwatch-logs"
log_format = "json"
log_type = "engine-log"
}
lifecycle {
ignore_changes = [kms_key_id]
Expand Down

0 comments on commit 1f2dd76

Please sign in to comment.