@gradientedge/cdk-utils 8.23.0 → 8.24.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.
|
@@ -119,7 +119,7 @@ class LambdaManager {
|
|
|
119
119
|
reservedConcurrentExecutions: props.reservedConcurrentExecutions,
|
|
120
120
|
role: role instanceof iam.Role ? role : undefined,
|
|
121
121
|
securityGroups: securityGroups,
|
|
122
|
-
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(
|
|
122
|
+
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(15),
|
|
123
123
|
vpc: vpc,
|
|
124
124
|
vpcSubnets: vpcSubnets,
|
|
125
125
|
tracing: props.tracing,
|
package/package.json
CHANGED
|
@@ -122,7 +122,7 @@ export class LambdaManager {
|
|
|
122
122
|
reservedConcurrentExecutions: props.reservedConcurrentExecutions,
|
|
123
123
|
role: role instanceof iam.Role ? role : undefined,
|
|
124
124
|
securityGroups: securityGroups,
|
|
125
|
-
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(
|
|
125
|
+
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(15),
|
|
126
126
|
vpc: vpc,
|
|
127
127
|
vpcSubnets: vpcSubnets,
|
|
128
128
|
tracing: props.tracing,
|