Skip to content

How to implement certificate type authentications in lambda function

0

The windows service I am trying to connect from the lambda function uses a mTLS type certificate authentication. How I can bring that to my lambda function so that the authentication will get passed.

asked 3 years ago504 views
1 Answer
0

You can store the client certificate in a place like Secrets Manager. In your Lambda function, you can make a GetSecret API call outside the main handler function to store the value in memory or save it under /tmp directory for subsequent invocations for the Lambda instance. The rest will depend on how you reference the mTLS certificate from your HTTP client package for your runtime.

AWS
answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.