@flipboxlabs/aws-audit-cdk 1.1.3 → 1.1.4

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.
@@ -11,7 +11,7 @@ export class CloudWatchConstruct extends Construct {
11
11
  // Lambda Function
12
12
  const lambdaFn = ESMNodeFunctionFactory(props.config)(this, "subscription", {
13
13
  functionName: ref,
14
- entry: url.fileURLToPath(new URL("subscription.handler.ts", import.meta.url).toString()),
14
+ entry: url.fileURLToPath(new URL("subscription.handler.js", import.meta.url).toString()),
15
15
  layers: props.lambda.layers,
16
16
  currentVersionOptions: {
17
17
  retryAttempts: 2,
@@ -16,7 +16,7 @@ export default class extends Construct {
16
16
  // Lambda
17
17
  const lambdaFn = ESMNodeFunctionFactory(props.config)(this, "NodeFunction", {
18
18
  functionName: ref,
19
- entry: url.fileURLToPath(new URL("handler.ts", import.meta.url).toString()),
19
+ entry: url.fileURLToPath(new URL("handler.js", import.meta.url).toString()),
20
20
  layers: props.lambda.layers,
21
21
  currentVersionOptions: {
22
22
  retryAttempts: 1,
@@ -15,7 +15,7 @@ export default class extends Construct {
15
15
  // Lambda
16
16
  const lambdaFn = ESMNodeFunctionFactory(props.config)(this, "NodeFunction", {
17
17
  functionName: ref,
18
- entry: url.fileURLToPath(new URL("handler.ts", import.meta.url).toString()),
18
+ entry: url.fileURLToPath(new URL("handler.js", import.meta.url).toString()),
19
19
  layers: props.lambda.layers,
20
20
  currentVersionOptions: {
21
21
  retryAttempts: 1,
@@ -15,7 +15,7 @@ export default class extends Construct {
15
15
  // Lambda
16
16
  const lambdaFn = ESMNodeFunctionFactory(props.config)(this, "NodeFunction", {
17
17
  functionName: ref,
18
- entry: url.fileURLToPath(new URL("handler.ts", import.meta.url).toString()),
18
+ entry: url.fileURLToPath(new URL("handler.js", import.meta.url).toString()),
19
19
  layers: props.lambda.layers,
20
20
  currentVersionOptions: {
21
21
  retryAttempts: 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipboxlabs/aws-audit-cdk",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "AWS Audit CDK - CDK constructs for AWS audit infrastructure",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",