Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pgollucci committed Nov 23, 2024
1 parent fb61fbc commit 8c734d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constructs/p6-lz-sra-avm-accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class P6LzSraAvmAccounts extends cdk.Resource {
})

const accountsFunction = new lambdajs.NodejsFunction(this, 'AccountsMaker', {
runtime: lambda.Runtime.NODEJS_20_X,
runtime: lambda.Runtime.NODEJS_22_X,
timeout: cdk.Duration.minutes(6),
tracing: lambda.Tracing.ACTIVE,
entry: path.join(__dirname, '..', 'resources', 'avm.AccountsMaker.ts'),
Expand Down
2 changes: 1 addition & 1 deletion src/constructs/p6-lz-sra-avm-ous.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class P6LzSraAvmOus extends cdk.Resource {
constructor(scope: Construct, id: string, props: IP6LzSraAvmOuProps) {
super(scope, id)
const ouFunction = new lambdajs.NodejsFunction(this, 'OUMaker', {
runtime: lambda.Runtime.NODEJS_20_X,
runtime: lambda.Runtime.NODEJS_22_X,
timeout: cdk.Duration.minutes(1),
tracing: lambda.Tracing.ACTIVE,
entry: path.join(__dirname, '..', 'resources', 'avm.OUMaker.ts'),
Expand Down

0 comments on commit 8c734d1

Please sign in to comment.