{"id":20839165,"url":"https://github.com/timoa/terraform-module-example","last_synced_at":"2026-01-04T08:03:53.584Z","repository":{"id":37472696,"uuid":"481121676","full_name":"timoa/terraform-module-example","owner":"timoa","description":"Terraform module use as an example to start new module. It includes all the automation (versioning, providers update, lint, security) and best practices from HashiCorp","archived":false,"fork":false,"pushed_at":"2024-05-22T17:19:48.000Z","size":179,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-05-22T18:35:31.422Z","etag":null,"topics":["managed-by-terraform","renovate","semantic-release","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://timoa.com","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/timoa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-13T07:48:16.000Z","updated_at":"2024-05-22T18:35:33.027Z","dependencies_parsed_at":"2023-02-09T19:31:16.010Z","dependency_job_id":"5f137afa-e6a2-4e72-ac69-b1153b125e1e","html_url":"https://github.com/timoa/terraform-module-example","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timoa%2Fterraform-module-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timoa%2Fterraform-module-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timoa%2Fterraform-module-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timoa%2Fterraform-module-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timoa","download_url":"https://codeload.github.com/timoa/terraform-module-example/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244574845,"owners_count":20474823,"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":["managed-by-terraform","renovate","semantic-release","terraform","terraform-module"],"created_at":"2024-11-18T01:12:31.982Z","updated_at":"2026-01-04T08:03:48.547Z","avatar_url":"https://github.com/timoa.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Terraform module example\n\n[![Latest Release][release-badge]][release-url]\n[![Build Status][github-badge]][github-url]\n[![License][license-badge]][license-url]\n\nA Terraform module uses as a template to start new Terraform module.\n\nIt includes all the module automation (versioning, providers update, lint, security) and best practices from HashiCorp.\n\n* [Pre-commit][pre-commit-url]: enforce checks on the module before commit\n* [Semantic Release][semantic-release-url]: automate the release and version process\n* [Reviewdog][reviewdog-url]: automate the review process with per code line comments (TFLint \u0026 TFSec checks)\n* [Renovate][renovate-url]: automate the dependency management (update provider version, etc.)\n* [ShiftLeft SCAN][shiftleft-scan-url]: security audit tool to detect security flaws in application and infrastructure code\n\n## Usage\n\n### Called from this Git repository\n\nIf you want to use this module inside your project, you can use the following code (change the tag to the latest version):\n\n```bash\nmodule \"module-template\" {\n  source = \"git::https://github.com/timoa/terraform-module-example.git?ref=tags/0.0.2\"\n}\n```\n\n### Output example\n\n```bash\nterraform init\nterraform plan\n```\n\n```bash\nTerraform used the selected providers to generate the following execution\nplan. Resource actions are indicated with the following symbols:\n  + create\n\nTerraform will perform the following actions:\n\n  # time_static.update will be created\n  + resource \"time_static\" \"update\" {\n      + day     = (known after apply)\n      + hour    = (known after apply)\n      + id      = (known after apply)\n      + minute  = (known after apply)\n      + month   = (known after apply)\n      + rfc3339 = (known after apply)\n      + second  = (known after apply)\n      + unix    = (known after apply)\n      + year    = (known after apply)\n    }\n\nPlan: 1 to add, 0 to change, 0 to destroy.\n\nChanges to Outputs:\n  + labels = {\n      + businessunit = \"mycompany\"\n      + environment  = \"dev\"\n      + project      = \"my-project\"\n      + team         = \"devops\"\n      + terraform    = \"true\"\n      + updated      = (known after apply)\n    }\n```\n\n[github-badge]: https://github.com/timoa/terraform-module-example/workflows/Terraform/badge.svg\n[github-url]: https://github.com/timoa/terraform-module-example/actions?query=workflow%3ATerraform\n[release-badge]: https://img.shields.io/github/release/timoa/terraform-module-example.svg\n[release-url]: https://github.com/timoa/terraform-module-example/releases/latest\n[license-badge]: https://img.shields.io/github/license/timoa/terraform-module-example.svg\n[license-url]: https://github.com/timoa/terraform-module-example/blob/main/LICENSE\n[pre-commit-url]: https://pre-commit.com/\n[semantic-release-url]: https://semantic-release.gitbook.io/semantic-release/\n[reviewdog-url]: https://github.com/reviewdog/reviewdog\n[renovate-url]: https://www.whitesourcesoftware.com/free-developer-tools/renovate/\n[shiftleft-scan-url]: https://shiftleft.io/docs/scan/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimoa%2Fterraform-module-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimoa%2Fterraform-module-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimoa%2Fterraform-module-example/lists"}