Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar> |
||
---|---|---|
.. | ||
README.md | ||
main.tf | ||
outputs.tf | ||
variables.tf | ||
versions.tf |
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 |