{"id":14957800,"url":"https://github.com/peak-ai/terraform-modules","last_synced_at":"2025-10-24T12:30:58.676Z","repository":{"id":39885424,"uuid":"269039024","full_name":"peak-ai/terraform-modules","owner":"peak-ai","description":"Terraform Modules by Peak","archived":false,"fork":false,"pushed_at":"2022-10-13T02:38:25.000Z","size":323,"stargazers_count":16,"open_issues_count":1,"forks_count":7,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-31T01:14:07.193Z","etag":null,"topics":["aws","dax","docker","ecr","eks","hcl","iac","iam","infrastructure-as-code","kubernetes","peak","s3","tags","terraform","terraform-configurations","terraform-modules"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peak-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-03T08:58:41.000Z","updated_at":"2023-09-29T13:16:21.000Z","dependencies_parsed_at":"2022-08-28T18:53:31.431Z","dependency_job_id":null,"html_url":"https://github.com/peak-ai/terraform-modules","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peak-ai%2Fterraform-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peak-ai%2Fterraform-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peak-ai%2Fterraform-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peak-ai%2Fterraform-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peak-ai","download_url":"https://codeload.github.com/peak-ai/terraform-modules/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237964492,"owners_count":19394410,"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","dax","docker","ecr","eks","hcl","iac","iam","infrastructure-as-code","kubernetes","peak","s3","tags","terraform","terraform-configurations","terraform-modules"],"created_at":"2024-09-24T13:15:38.129Z","updated_at":"2025-10-24T12:30:53.376Z","avatar_url":"https://github.com/peak-ai.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\".github/images/peak.gif\" alt=\"Peak\" width=\"100\" height=\"100\" /\u003e\n\n# ![T](.github/images/terraform.png)erraform-modules\n\n![Build](https://github.com/peak-ai/terraform-modules/workflows/Build/badge.svg) ![stable](https://img.shields.io/github/v/release/peak-ai/terraform-modules) ![](https://img.shields.io/github/v/release/peak-ai/terraform-modules?include_prereleases) ![](https://img.shields.io/github/license/peak-ai/terraform-modules) ![](https://img.shields.io/github/languages/count/peak-ai/terraform-modules) ![](https://img.shields.io/github/languages/top/peak-ai/terraform-modules) ![](https://img.shields.io/github/issues-raw/peak-ai/terraform-modules) ![](https://img.shields.io/github/issues-pr-raw/peak-ai/terraform-modules) ![](https://img.shields.io/github/languages/code-size/peak-ai/terraform-modules) ![](https://img.shields.io/github/repo-size/peak-ai/terraform-modules)\n\nThis repo list some open to use Terraform modules we use at `Peak AI` because we :heart: IAC(Infrastucture as Code) and Terraform modules are a great way to write reusable Infra.\n\n## List of avilable modules\n\n- [:construction: Docker Builder](/docker_builder)\n- [:camera: ECR](/ecr)\n- [☸ K8S_IRSA](/k8s_irsa)\n- [:open_file_folder: S3](/s3)\n- [:oil_drum: Dax](/dax)\n- [:bookmark: Tags (aka Labels)](/tags)\n\n## Example usage\n\nThere are two approaches to import and use modules in this repo.\n\n### Using specific revision (recommended approach)\n`Blueprint`\n```hcl\nmodule \"\u003cname_you_want_to_give_to_this_module\u003e\" {\n    source  = \"git::https://github.com/peak-ai/terraform-modules//\u003cname_of_folder/module_to_use\u003e?ref=\u003cgithub_tag/release/commit\u003e\"\n    .\n    .\n    .\n    # Add inputs here you want to overwrite\n}\n```\n`Example`\n```hcl\nmodule \"tags\" {\n    source  = \"git::https://github.com/peak-ai/terraform-modules//tags?ref=v0.1.0\"\n    stage   = \"latest\"\n    feature = \"example\"\n    service = \"example\"\n}\n```\n\n### Importing latest version (Use this approach at your own risk as there can be breaking changes)\n\n`Blueprint`\n```hcl\nmodule \"\u003cname_you_want_to_give_to_this_module\u003e\" {\n    source  = \"git::https://github.com/peak-ai/terraform-modules.git//\u003cname_of_folder/module_to_use\u003e\"\n    .\n    .\n    .\n    # Add inputs here you want to overwrite\n}\n```\n\n`Example`\n```hcl\nmodule \"tags\" {\n    source  = \"git::https://github.com/peak-ai/terraform-modules.git//tags\"\n    stage   = \"latest\"\n    feature = \"example\"\n    service = \"example\"\n}\n```\n\n\n## Contributing\n\nDespite being primarily maintained by Peak, we welcome and appreciate any contributions from the community! Please see the [contribution guidelines](CONTRIBUTING.md) for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeak-ai%2Fterraform-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeak-ai%2Fterraform-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeak-ai%2Fterraform-modules/lists"}