We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b610d commit 646fe14Copy full SHA for 646fe14
datadog_lambda/__init__.py
@@ -3,7 +3,10 @@
3
4
5
if os.environ.get("DD_INSTRUMENTATION_TELEMETRY_ENABLED") is None:
6
- os.environ["DD_INSTRUMENTATION_TELEMETRY_ENABLED"] = "false"
+ # Telemetry is required for Appsec Software Composition Analysis
7
+ os.environ["DD_INSTRUMENTATION_TELEMETRY_ENABLED"] = os.environ.get(
8
+ "DD_APPSEC_ENABLED", "false"
9
+ )
10
11
if os.environ.get("DD_API_SECURITY_ENABLED") is None:
12
os.environ["DD_API_SECURITY_ENABLED"] = "False"
0 commit comments