July 2017
Intermediate to advanced
402 pages
9h 38m
English
We previously created our Lambda function using the Serverless framework starting from scratch. The Serverless frameworks can also be used to download existing functions from GitHub and other code management repository systems. We will use it to install a function that downloads a CloudTrailgizip file, unzip it, and send the records to ElasticSearch using the following command:
$ serverless install -u https://github.com/EffectiveDevOpsWithAWS/serverless-cloudtrail-to-es -n cloudtrail-aws-es
We will now navigate to the directory:
$ cd cloudtrail-aws-es
Previously, the Lambda function we created was written in Node.js. AWS Lambda supports a few more languages, including Python. We will ...
Read now
Unlock full access