terraform-aws-lambda-builder
terraform-aws-lambda-builder copied to clipboard
Terraform module to build Lambda functions in Lambda or CodeBuild
Current module does not work any longer on macOS 12.3 which removed the `python` command. Need to update to use `python3` which should work universally across most systems via PEP...
Hi, it is missing informations for `aws_s3_bucket` in the [readme.md](https://github.com/raymondbutcher/terraform-aws-lambda-builder/blob/master/README.md) Returns ``` Error: Reference to undeclared resource │ │ on main.tf line 29, in module "lambda_function": │ 29: s3_bucket =...
Sometimes `__pycache__` directories are included in the zip, and also other files from `.gitignore`, which leads to the zip file changing and Terraform wanting to update it. Perhaps this module...
In regards with this issue: https://github.com/raymondbutcher/terraform-aws-lambda-builder/issues/11 Added compile_output_dir to support LAMBDA build types in CI with separated plan/apply phases
Hi Raymond Egor again. We're facing the following issue during `terraform apply` stage: `[terragrunt] 2020/10/08 03:22:32 Running command: terraform apply -input=false --auto-approve /tmp/cci-extras/workspace/terraform.plan module.identify_unprocessed_grids_lambda_function.aws_s3_bucket_object.source_zip_file[0]: Creating... Error: Error opening S3 bucket...
Hey Ray, Would be good to get Terraform docs run on this module and have the parameters added to the readme. Thanks, Alan
When CloudFormation runs the custom resource and the Lambda function fails (e.g. `build.sh` is missing, or it errors) then try to make the error message in Terraform better. I think...