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 1660d5c commit 9c17165Copy full SHA for 9c17165
src/deployments/cdk/src/common/alb-ip-forwarding.ts
@@ -58,6 +58,7 @@ export class AlbIpForwarding extends Construct {
58
59
const dnsFWLambda = new lambda.Function(this, `${prefix}dnsFWLambda`, {
60
runtime: lambda.Runtime.NODEJS_18_X,
61
+ memorySize: 512,
62
code: lambdaCode,
63
handler: 'index.albIpMonitor',
64
timeout: Duration.seconds(60),
@@ -81,6 +82,7 @@ export class AlbIpForwarding extends Construct {
81
82
83
const lambdaDnsRecordMonitor = new lambda.Function(this, `${prefix}ddbDnsRecordMonitor`, {
84
85
86
handler: 'index.albTargetRecordMonitor',
87
88
0 commit comments