Skip to content

Commit a0b61e4

Browse files
authored
fix(aws): Fixing default value for cloudwatch enrichment that was turn to true (#1008)
Signed-off-by: Vincent Boutour <vincent.boutour@datadoghq.com>
1 parent 83bc051 commit a0b61e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws/logs_monitoring/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def __init__(self, name, pattern, placeholder, enabled=True):
274274
DD_FETCH_S3_TAGS = get_env_var("DD_FETCH_S3_TAGS", default="true", boolean=True)
275275

276276
DD_FETCH_LOG_GROUP_TAGS = get_env_var(
277-
"DD_FETCH_LOG_GROUP_TAGS", default="true", boolean=True
277+
"DD_FETCH_LOG_GROUP_TAGS", default="false", boolean=True
278278
)
279279

280280
DD_FETCH_LAMBDA_TAGS = get_env_var(

0 commit comments

Comments
 (0)