@gradientedge/cdk-utils 6.0.1 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,6 +115,7 @@ class LambdaManager {
115
115
  timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(1),
116
116
  vpc: vpc,
117
117
  vpcSubnets: vpcSubnets,
118
+ tracing: props.tracing,
118
119
  },
119
120
  });
120
121
  utils.createCfnOutput(`${id}-lambdaArn`, scope, lambdaFunction.functionArn);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "6.0.1",
3
+ "version": "6.1.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -114,6 +114,7 @@ export class LambdaManager {
114
114
  timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(1),
115
115
  vpc: vpc,
116
116
  vpcSubnets: vpcSubnets,
117
+ tracing: props.tracing,
117
118
  },
118
119
  })
119
120