bsmsapp/terraform/modules/lambda/README.md

2.7 KiB

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
environment_variables A map that defines environment variables for the Lambda Function. map(string) {} no
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
source_code_hash The zip hash. string n/a yes
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_invoke_arn The invoke ARN of the Lambda Function
function_name The name of the Lambda Function