File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed
Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ export class BasePythonStack extends cdk.Stack {
2121 DD_SERVICE : pythonFunctionName ,
2222 DD_TRACE_ENABLED : 'true' ,
2323 DD_LAMBDA_HANDLER : 'lambda_function.handler' ,
24- DD_LOG_LEVEL : 'debug' ,
2524 DD_TRACE_AGENT_URL : 'http://127.0.0.1:8126' ,
2625 DD_COLD_START_TRACING : 'true' ,
2726 DD_MIN_COLD_START_DURATION : '0' ,
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export const extensionLayerArn = process.env.EXTENSION_LAYER_ARN!;
99
1010export const node20LayerArn = 'arn:aws:lambda:us-east-1:464622532012:layer:Datadog-Node20-x:130' ;
1111export const python313LayerArn = 'arn:aws:lambda:us-east-1:464622532012:layer:Datadog-Python313-ARM:117' ;
12- export const pythonLayerArn = 'arn:aws:lambda:us-east-1:425362996713:layer:John-Datadog-Python312-ARM:20' ;
1312
1413export const defaultDatadogEnvVariables = {
1514 DD_API_KEY_SECRET_ARN : datadogSecretArn ,
@@ -61,11 +60,3 @@ export const getPython313Layer = (scope: Construct) => {
6160 python313LayerArn
6261 ) ;
6362} ;
64-
65- export const getPythonLayer = ( scope : Construct ) => {
66- return LayerVersion . fromLayerVersionArn (
67- scope ,
68- 'DatadogPythonLayer' ,
69- pythonLayerArn
70- ) ;
71- } ;
You can’t perform that action at this time.
0 commit comments