{"id":22042958,"url":"https://github.com/jmoney/lambda-inventory","last_synced_at":"2026-04-10T11:31:27.478Z","repository":{"id":191877760,"uuid":"684192900","full_name":"jmoney/lambda-inventory","owner":"jmoney","description":"Takes inventory of the lambda service in AWS configured by a yaml file.","archived":false,"fork":false,"pushed_at":"2024-01-01T03:05:15.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-13T09:53:50.558Z","etag":null,"topics":["aws","github-site","homebrew-formula","license-updater","mkdocs"],"latest_commit_sha":null,"homepage":"https://www.jmoney.dev/lambda-inventory","language":"Go","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/jmoney.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-28T16:37:25.000Z","updated_at":"2023-08-31T15:16:17.000Z","dependencies_parsed_at":"2023-09-01T09:32:09.820Z","dependency_job_id":"b14653ce-ce5a-43e1-8556-a5e9611f3e86","html_url":"https://github.com/jmoney/lambda-inventory","commit_stats":null,"previous_names":["jmoney/lambda-inventory"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jmoney/lambda-inventory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmoney%2Flambda-inventory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmoney%2Flambda-inventory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmoney%2Flambda-inventory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmoney%2Flambda-inventory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmoney","download_url":"https://codeload.github.com/jmoney/lambda-inventory/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmoney%2Flambda-inventory/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31641114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","github-site","homebrew-formula","license-updater","mkdocs"],"created_at":"2024-11-30T12:13:52.174Z","updated_at":"2026-04-10T11:31:27.462Z","avatar_url":"https://github.com/jmoney.png","language":"Go","readme":"# lambda-inventory\n\nGo program to inventory AWS Lambda functions across multiple accounts and regions.  It executes based off of a configuration file written in YAML to determine which accounts and regions to scan.  It currently only catalogs the `Runtime`, `PackageType`, and `Tags` but more can be added easily.\n\n## Overview\n\n| Arguemment | Description | Default Value |\n| --- | --- | --- |\n| config | The path to the config file to configure the inventory run | config.yaml |\n\n## Example Config File\n\n```yaml\naccounts:\n    dev:\n        profile: dev-admin\n        regions:\n            - us-east-1\n            - us-west-2\n    production:\n        profile: production-admin\n        regions:\n            - us-east-1\n            - us-west-2\n```\n\nThe above configuration would inventory the lambdas in the `dev` and `prod` account using the profile `dev-admin` and `production-admin` in the regions `us-east-1` and `us-west-2`.\n\n## Example Output\n\n```json\n{\n    \"lambda1\": {\n        \"dev\": {\n            \"us-east-1\": [\n                {\n                    \"functionArn\": \"arn:aws:lambda:us-east-1:1234567891234:function:lambda1\",\n                    \"runtime\": \"go1.x\",\n                    \"packageType\": \"Zip\",\n                    \"tags\": {\n                        \"Key\": \"Value\",\n                    }\n                }\n            ]\n        },\n        \"production\": {\n            \"us-east-1\": [\n                {\n                    \"functionArn\": \"arn:aws:lambda:us-east-1:3434567891234:function:lambda1\",\n                    \"runtime\": \"go1.x\",\n                    \"packageType\": \"Zip\",\n                    \"tags\": {\n                        \"Key\": \"Value\",\n                    }\n                }\n            ],\n            \"us-west-2\": [\n                {\n                    \"functionArn\": \"arn:aws:lambda:us-west-2:3434567891234:function:lambda1\",\n                    \"runtime\": \"go1.x\",\n                    \"packageType\": \"Zip\",\n                    \"tags\": {\n                        \"Key\": \"Value\",\n                    }\n                }\n            ]\n        }\n    },\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmoney%2Flambda-inventory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmoney%2Flambda-inventory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmoney%2Flambda-inventory/lists"}