Skip to content

Latest commit

 

History

History
executable file
·
38 lines (26 loc) · 712 Bytes

README.md

File metadata and controls

executable file
·
38 lines (26 loc) · 712 Bytes

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