mehmetboraezer / aws-lambda-unzip

Unzip function for AWS Lambda

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-lambda-unzip

Unzip function for AWS Lambda

The function extracts zip files and uploads files to the same S3 location. It should be waiting for S3 upload event.

Permissions

You need to give following permissions:

{
    "Effect": "Allow",
    "Action": [
        "s3:GetObject",
        "s3:PutObject",
        "s3:DeleteObject"
    ],
    "Resource": [
        "arn:aws:s3:::target-bucket"
    ]
}

Requirements

  • Python 3.6

License

See LICENSE

Configuring AWS Lambda via Terraform script

In order to automatically configure lambda, check terraform.tfvars and run the following command:

zip unzip_lambda.zip -xi unzip_lambda.py
terraform apply

About

Unzip function for AWS Lambda

License:GNU General Public License v3.0


Languages

Language:HCL 62.0%Language:Python 38.0%