{"id":19129447,"url":"https://github.com/launchbynttdata/tf-aws-module_reference-bulk_lambda_function","last_synced_at":"2026-05-17T02:02:50.206Z","repository":{"id":244456156,"uuid":"807631954","full_name":"launchbynttdata/tf-aws-module_reference-bulk_lambda_function","owner":"launchbynttdata","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-02T16:00:56.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-03T10:46:07.544Z","etag":null,"topics":["aws","reference-architecture","terraform"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/launchbynttdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-29T13:25:07.000Z","updated_at":"2024-10-10T14:33:51.000Z","dependencies_parsed_at":"2025-01-03T10:43:36.209Z","dependency_job_id":"b3d24f8f-1411-461d-8b4b-0b7c880a6cf0","html_url":"https://github.com/launchbynttdata/tf-aws-module_reference-bulk_lambda_function","commit_stats":null,"previous_names":["launchbynttdata/tf-aws-module_reference-bulk_lambda_function"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/launchbynttdata","download_url":"https://codeload.github.com/launchbynttdata/tf-aws-module_reference-bulk_lambda_function/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240199258,"owners_count":19763827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","reference-architecture","terraform"],"created_at":"2024-11-09T06:07:31.937Z","updated_at":"2026-05-17T02:02:50.193Z","avatar_url":"https://github.com/launchbynttdata.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tf-aws-module_reference-bulk_lambda_function\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC_BY--NC--ND_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/)\n\n## Overview\n\nThis module provides ability to create multiple lambda functions.\n\n## Pre-Commit hooks\n\n[.pre-commit-config.yaml](.pre-commit-config.yaml) file defines certain `pre-commit` hooks that are relevant to terraform, golang and common linting tasks. There are no custom hooks added.\n\n`commitlint` hook enforces commit message in certain format. The commit contains the following structural elements, to communicate intent to the consumers of your commit messages:\n\n- **fix**: a commit of the type `fix` patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).\n- **feat**: a commit of the type `feat` introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).\n- **BREAKING CHANGE**: a commit that has a footer `BREAKING CHANGE:`, or appends a `!` after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.\nfooters other than BREAKING CHANGE: \u003cdescription\u003e may be provided and follow a convention similar to git trailer format.\n- **build**: a commit of the type `build` adds changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)\n- **chore**: a commit of the type `chore` adds changes that don't modify src or test files\n- **ci**: a commit of the type `ci` adds changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)\n- **docs**: a commit of the type `docs` adds documentation only changes\n- **perf**: a commit of the type `perf` adds code change that improves performance\n- **refactor**: a commit of the type `refactor` adds code change that neither fixes a bug nor adds a feature\n- **revert**: a commit of the type `revert` reverts a previous commit\n- **style**: a commit of the type `style` adds code changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)\n- **test**: a commit of the type `test` adds missing tests or correcting existing tests\n\nBase configuration used for this project is [commitlint-config-conventional (based on the Angular convention)](https://github.com/conventional-changelog/commitlint/tree/master/@commitlint/config-conventional#type-enum)\n\nIf you are a developer using vscode, [this](https://marketplace.visualstudio.com/items?itemName=joshbolduc.commitlint) plugin may be helpful.\n\n`detect-secrets-hook` prevents new secrets from being introduced into the baseline. TODO: INSERT DOC LINK ABOUT HOOKS\n\nIn order for `pre-commit` hooks to work properly\n\n- You need to have the pre-commit package manager installed. [Here](https://pre-commit.com/#install) are the installation instructions.\n- `pre-commit` would install all the hooks when commit message is added by default except for `commitlint` hook. `commitlint` hook would need to be installed manually using the command below\n\n```\npre-commit install --hook-type commit-msg\n```\n\n## To test the resource group module locally\n\n1. For development/enhancements to this module locally, you'll need to install all of its components. This is controlled by the `configure` target in the project's [`Makefile`](./Makefile). Before you can run `configure`, familiarize yourself with the variables in the `Makefile` and ensure they're pointing to the right places.\n\n```\nmake configure\n```\n\nThis adds in several files and directories that are ignored by `git`. They expose many new Make targets.\n\n2. _THIS STEP APPLIES ONLY TO MICROSOFT AZURE. IF YOU ARE USING A DIFFERENT PLATFORM PLEASE SKIP THIS STEP._ The first target you care about is `env`. This is the common interface for setting up environment variables. The values of the environment variables will be used to authenticate with cloud provider from local development workstation.\n\n`make configure` command will bring down `azure_env.sh` file on local workstation. Devloper would need to modify this file, replace the environment variable values with relevant values.\n\nThese environment variables are used by `terratest` integration suit.\n\nService principle used for authentication(value of ARM_CLIENT_ID) should have below privileges on resource group within the subscription.\n\n```\n\"Microsoft.Resources/subscriptions/resourceGroups/write\"\n\"Microsoft.Resources/subscriptions/resourceGroups/read\"\n\"Microsoft.Resources/subscriptions/resourceGroups/delete\"\n```\n\nThen run this make target to set the environment variables on developer workstation.\n\n```\nmake env\n```\n\n3. The first target you care about is `check`.\n\n**Pre-requisites**\nBefore running this target it is important to ensure that, developer has created files mentioned below on local workstation under root directory of git repository that contains code for primitives/segments. Note that these files are `azure` specific. If primitive/segment under development uses any other cloud provider than azure, this section may not be relevant.\n\n- A file named `provider.tf` with contents below\n\n```\nprovider \"azurerm\" {\n  features {}\n}\n```\n\n- A file named `terraform.tfvars` which contains key value pair of variables used.\n\nNote that since these files are added in `gitignore` they would not be checked in into primitive/segment's git repo.\n\nAfter creating these files, for running tests associated with the primitive/segment, run\n\n```\nmake check\n```\n\nIf `make check` target is successful, developer is good to commit the code to primitive/segment's git repo.\n\n`make check` target\n\n- runs `terraform commands` to `lint`,`validate` and `plan` terraform code.\n- runs `conftests`. `conftests` make sure `policy` checks are successful.\n- runs `terratest`. This is integration test suit.\n- runs `opa` tests\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | ~\u003e 1.5 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | ~\u003e 5.0 |\n\n## Providers\n\nNo providers.\n\n## Modules\n\n| Name | Source | Version |\n|------|--------|---------|\n| \u003ca name=\"module_lambda_function\"\u003e\u003c/a\u003e [lambda\\_function](#module\\_lambda\\_function) | terraform.registry.launch.nttdata.com/module_primitive/lambda_function/aws | ~\u003e 1.0 |\n| \u003ca name=\"module_resource_names\"\u003e\u003c/a\u003e [resource\\_names](#module\\_resource\\_names) | git::https://github.com/launchbynttdata/tf-launch-module_library-resource_name.git | 2.2.1 |\n\n## Resources\n\nNo resources.\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_bulk_lambda_functions\"\u003e\u003c/a\u003e [bulk\\_lambda\\_functions](#input\\_bulk\\_lambda\\_functions) | Map of lambda functions to create. | \u003cpre\u003emap(object({\u003cbr\u003e    name                    = string\u003cbr\u003e    description             = optional(string, \"\")\u003cbr\u003e    handler                 = optional(string, \"index.lambda_handler\")\u003cbr\u003e    runtime                 = optional(string, \"python3.9\")\u003cbr\u003e    architectures           = optional(list(string), [\"x86_64\"])\u003cbr\u003e    publish                 = optional(bool, true)\u003cbr\u003e    ephemeral_storage_size  = optional(number, 512)\u003cbr\u003e    environment_variables   = optional(map(string), {})\u003cbr\u003e    memory_size             = optional(number, 128)\u003cbr\u003e    timeout                 = optional(number, 3)\u003cbr\u003e    create_package          = optional(bool, false)\u003cbr\u003e    source_path             = optional(string)\u003cbr\u003e    zip_file_path           = optional(string)\u003cbr\u003e    store_on_s3             = optional(bool, false)\u003cbr\u003e    s3_existing_package     = optional(map(string))\u003cbr\u003e    s3_bucket               = optional(string)\u003cbr\u003e    s3_prefix               = optional(string, \"builds\")\u003cbr\u003e    layers                  = optional(list(string))\u003cbr\u003e    hash_extra              = optional(string)\u003cbr\u003e    ignore_source_code_hash = optional(bool, false)\u003cbr\u003e    authorization_type      = optional(string, \"NONE\")\u003cbr\u003e    cors = optional(object({\u003cbr\u003e      allow_credentials = optional(bool, false)\u003cbr\u003e      allow_headers     = optional(list(string), null)\u003cbr\u003e      allow_methods     = optional(list(string), null)\u003cbr\u003e      allow_origins     = optional(list(string), null)\u003cbr\u003e      expose_headers    = optional(list(string), null)\u003cbr\u003e      max_age           = optional(number, 0)\u003cbr\u003e    }), {})\u003cbr\u003e    create_lambda_function_url         = optional(bool, true)\u003cbr\u003e    invoke_mode                        = optional(string, \"BUFFERED\")\u003cbr\u003e    attach_policy_statements           = optional(bool, false)\u003cbr\u003e    policy_statements                  = optional(map(string), {})\u003cbr\u003e    attach_policy                      = optional(bool, false)\u003cbr\u003e    policy                             = optional(string)\u003cbr\u003e    attach_policies                    = optional(bool, false)\u003cbr\u003e    policies                           = optional(list(string), [])\u003cbr\u003e    attach_policy_json                 = optional(bool, false)\u003cbr\u003e    policy_json                        = optional(string)\u003cbr\u003e    attach_policy_jsons                = optional(bool, false)\u003cbr\u003e    policy_jsons                       = optional(list(string), [])\u003cbr\u003e    attach_dead_letter_policy          = optional(bool, false)\u003cbr\u003e    dead_letter_target_arn             = optional(string)\u003cbr\u003e    attach_network_policy              = optional(bool, false)\u003cbr\u003e    attach_async_event_policy          = optional(bool, false)\u003cbr\u003e    attach_tracing_policy              = optional(bool, false)\u003cbr\u003e    assume_role_policy_statements      = optional(map(string), {})\u003cbr\u003e    trusted_entities                   = optional(list(string), [])\u003cbr\u003e    attach_cloudwatch_logs_policy      = optional(bool, true)\u003cbr\u003e    attach_create_log_group_permission = optional(bool, true)\u003cbr\u003e    cloudwatch_logs_kms_key_id         = optional(string)\u003cbr\u003e    cloudwatch_logs_log_group_class    = optional(string, \"STANDARD\")\u003cbr\u003e    cloudwatch_logs_retention_in_days  = optional(number, 30)\u003cbr\u003e    cloudwatch_logs_skip_destroy       = optional(bool, false)\u003cbr\u003e    cloudwatch_logs_tags               = optional(map(string))\u003cbr\u003e    tracing_mode                       = optional(string, \"PassThrough\")\u003cbr\u003e    vpc_security_group_ids             = optional(list(string))\u003cbr\u003e    vpc_subnet_ids                     = optional(list(string))\u003cbr\u003e    lambda_at_edge                     = optional(bool, false)\u003cbr\u003e    lambda_at_edge_logs_all_regions    = optional(bool, true)\u003cbr\u003e    tags                               = optional(map(string))\u003cbr\u003e    create                             = optional(bool, true)\u003cbr\u003e  }))\u003c/pre\u003e | n/a | yes |\n| \u003ca name=\"input_environment\"\u003e\u003c/a\u003e [environment](#input\\_environment) | Environment in which the resource should be provisioned like dev, qa, prod etc. | `string` | `\"dev\"` | no |\n| \u003ca name=\"input_instance_env\"\u003e\u003c/a\u003e [instance\\_env](#input\\_instance\\_env) | Number that represents the instance of the environment. | `number` | `0` | no |\n| \u003ca name=\"input_region\"\u003e\u003c/a\u003e [region](#input\\_region) | AWS Region in which the infra needs to be provisioned | `string` | `\"us-east-2\"` | no |\n| \u003ca name=\"input_instance_resource\"\u003e\u003c/a\u003e [instance\\_resource](#input\\_instance\\_resource) | Number that represents the instance of the resource. | `number` | `0` | no |\n| \u003ca name=\"input_logical_product_family\"\u003e\u003c/a\u003e [logical\\_product\\_family](#input\\_logical\\_product\\_family) | (Required) Name of the product family for which the resource is created.\u003cbr\u003e    Example: org\\_name, department\\_name. | `string` | n/a | yes |\n| \u003ca name=\"input_logical_product_service\"\u003e\u003c/a\u003e [logical\\_product\\_service](#input\\_logical\\_product\\_service) | (Required) Name of the product service for which the resource is created.\u003cbr\u003e    For example, backend, frontend, middleware etc. | `string` | n/a | yes |\n| \u003ca name=\"input_resource_names_map\"\u003e\u003c/a\u003e [resource\\_names\\_map](#input\\_resource\\_names\\_map) | A map of key to resource\\_name that will be used by tf-launch-module\\_library-resource\\_name to generate resource names | \u003cpre\u003emap(object(\u003cbr\u003e    {\u003cbr\u003e      name       = string\u003cbr\u003e      max_length = optional(number, 60)\u003cbr\u003e    }\u003cbr\u003e  ))\u003c/pre\u003e | \u003cpre\u003e{\u003cbr\u003e  \"function\": {\u003cbr\u003e    \"max_length\": 60,\u003cbr\u003e    \"name\": \"fn\"\u003cbr\u003e  }\u003cbr\u003e}\u003c/pre\u003e | no |\n| \u003ca name=\"input_lambda_function_name_overrides\"\u003e\u003c/a\u003e [lambda\\_function\\_name\\_overrides](#input\\_lambda\\_function\\_name\\_overrides) | Optional map of Lambda function keys (matching bulk\\_lambda\\_functions keys) to custom full names. When a key is present, its value is used as the Lambda function name instead of the resource\\_names-generated name. | `map(string)` | `{}` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_lambda_function_arns\"\u003e\u003c/a\u003e [lambda\\_function\\_arns](#output\\_lambda\\_function\\_arns) | n/a |\n| \u003ca name=\"output_lambda_function_names\"\u003e\u003c/a\u003e [lambda\\_function\\_names](#output\\_lambda\\_function\\_names) | n/a |\n| \u003ca name=\"output_lambda_cloudwatch_log_group_arns\"\u003e\u003c/a\u003e [lambda\\_cloudwatch\\_log\\_group\\_arns](#output\\_lambda\\_cloudwatch\\_log\\_group\\_arns) | n/a |\n| \u003ca name=\"output_lambda_cloudwatch_log_group_names\"\u003e\u003c/a\u003e [lambda\\_cloudwatch\\_log\\_group\\_names](#output\\_lambda\\_cloudwatch\\_log\\_group\\_names) | n/a |\n| \u003ca name=\"output_lambda_function_urls\"\u003e\u003c/a\u003e [lambda\\_function\\_urls](#output\\_lambda\\_function\\_urls) | n/a |\n| \u003ca name=\"output_lambda_role_arns\"\u003e\u003c/a\u003e [lambda\\_role\\_arns](#output\\_lambda\\_role\\_arns) | n/a |\n| \u003ca name=\"output_lambda_role_names\"\u003e\u003c/a\u003e [lambda\\_role\\_names](#output\\_lambda\\_role\\_names) | n/a |\n\u003c!-- END_TF_DOCS --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaunchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchbynttdata%2Ftf-aws-module_reference-bulk_lambda_function/lists"}