AWS Ping Serverless Function
This project uses serverless framework to create Lambda functions that pings various AWS endpoints and writes the results to s3 bucket.
Run Instructions
- Install
serverless
framework withnpm install -g serverless
. - Checkout here to connect serverless with your AWS account.
- Install node dependencies with
npm install
. - Create a file
env.yml
, for environment variables, with following contents:
TOPIC_NAME: # Name for SNS Topic
BUCKET_NAME: # Name for S3 Bucket
- Deploy lambda function with
serverless deploy
.