Skip to content

Commit 646b042

Browse files
committed
fix: remove restriction that debug logging must be enabled in order to manage the proxy log group
1 parent fe6d354 commit 646b042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ resource "aws_db_proxy_target" "db_cluster" {
7575
################################################################################
7676

7777
resource "aws_cloudwatch_log_group" "this" {
78-
count = var.create_proxy && var.manage_log_group && var.debug_logging ? 1 : 0
78+
count = var.create_proxy && var.manage_log_group ? 1 : 0
7979

8080
name = "/aws/rds/proxy/${var.name}"
8181
retention_in_days = var.log_group_retention_in_days

0 commit comments

Comments
 (0)