bsmsapp/terraform/modules/lambda
Santiago Lo Coco adad6f5386 Add step-functions, update lambda and fix bugs
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
2022-12-01 19:26:34 -03:00
..
README.md Remove backup and ses 2022-11-30 19:33:42 -03:00
main.tf Implement api->sqs->lambda 2022-10-26 13:14:09 -03:00
outputs.tf Add step-functions, update lambda and fix bugs 2022-12-01 19:26:34 -03:00
variables.tf Fix bugs and refactor 2022-11-02 09:50:42 -03:00
versions.tf Remove backup and ses 2022-11-30 19:33:42 -03:00

README.md

Requirements

Name Version
terraform >= 1.3.1
aws >= 4.10.0

Providers

Name Version
aws 4.38.0

Modules

No modules.

Resources

Name Type
aws_lambda_function.this resource

Inputs

Name Description Type Default Required
function_name A unique name for your Lambda Function. string n/a yes
handler Lambda Function entrypoint in your code. string n/a yes
iam_role IAM role ARN attached to the Lambda Function. string n/a yes
package The absolute path to an existing zip-file to use. string null no
runtime Lambda Function runtime. string n/a yes
source_arn Lambda source ARN. string "" no
tags A mapping of tags to assign to API gateway resources. map(string) {} no
vpc_security_group_ids List of security group ids when Lambda Function should run in the VPC. list(string) null no
vpc_subnet_ids List of subnet ids when Lambda Function should run in the VPC. list(string) null no

Outputs

Name Description
function_arn The ARN of the Lambda Function
function_name The name of the Lambda Function