Learn How to run Bash script with AWS Lambda
Open console.aws.amazon.com/lambda/
Create a Function
create a new script file in the console with any name and adjust the name in the below handler
import os
import json
import subprocess
def lambda_handler(event, context):
body = event.get('b...
mdusama.hashnode.dev1 min read