Skip to content

Commit d815945

Browse files
authored
Set authorizer lambda runtime to node18.x (#61)
Fixes: aws-controllers-k8s/community#1825 Set authorizer lambda runtime to node18.x By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent d832984 commit d815945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/service_bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def create_lambda_authorizer(authorizer_function_name: str, authorizer_role_arn:
7272
FunctionName=authorizer_function_name,
7373
Role=authorizer_role_arn,
7474
Handler='index.handler',
75-
Runtime='nodejs12.x',
75+
Runtime='nodejs18.x',
7676
Code={'ZipFile': b64_encoded_zip_file}
7777
)
7878

0 commit comments

Comments
 (0)