{"id":17720212,"url":"https://github.com/tfverch/tfvc","last_synced_at":"2026-01-14T19:59:37.484Z","repository":{"id":60502111,"uuid":"543552122","full_name":"tfverch/tfvc","owner":"tfverch","description":"Terraform provider and module version checking tool","archived":false,"fork":false,"pushed_at":"2022-12-06T20:28:15.000Z","size":13744,"stargazers_count":134,"open_issues_count":7,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T13:16:30.424Z","etag":null,"topics":["go","golang","terraform"],"latest_commit_sha":null,"homepage":"https://tfverch.github.io/tfvc/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tfverch.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":null,"security":null,"support":null}},"created_at":"2022-09-30T10:43:55.000Z","updated_at":"2025-03-21T07:11:31.000Z","dependencies_parsed_at":"2023-01-23T15:01:18.624Z","dependency_job_id":null,"html_url":"https://github.com/tfverch/tfvc","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/tfverch/tfvc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfverch%2Ftfvc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfverch%2Ftfvc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfverch%2Ftfvc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfverch%2Ftfvc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tfverch","download_url":"https://codeload.github.com/tfverch/tfvc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfverch%2Ftfvc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["go","golang","terraform"],"created_at":"2024-10-25T15:26:31.747Z","updated_at":"2026-01-14T19:59:37.468Z","avatar_url":"https://github.com/tfverch.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Terraform Version Check\n\n[![release](https://img.shields.io/github/v/release/tfverch/tfvc?display_name=tag\u0026color=blueviolet)](https://github.com/tfverch/tfvc/releases)\n[![GoReportCard](https://goreportcard.com/badge/github.com/tfverch/tfvc)](https://goreportcard.com/report/github.com/tfverch/tfvc)\n[![Go version](https://img.shields.io/github/go-mod/go-version/tfverch/tfvc.svg)](https://github.com/tfverch/tfvc)\n\u003c!-- [![codecov](https://codecov.io/gh/tfverch/tfvc/branch/main/graph/badge.svg?token=4MG4WLY6N7)](https://codecov.io/gh/tfverch/tfvc) --\u003e\n\nTerraform version check (tfvc) is a reporting tool to identify available updates for providers and modules referenced in your Terraform code. It provides clear warning/failure\noutput and resolution guidance for any issues it detects.\n\n**NOTE: This project is currently under heavy development and things WILL break (probably)**\n\n## Example output\n\n![Example output](/docs/example-output.png)\n\n## Installation\n\nInstall with Homebrew on MacOS or Linux.\n\n```bash\nbrew install tfverch/tfvc/tfvc\n```\n\nInstall with Go\n\n```bash\ngo install github.com/tfverch/tfvc@latest\n```\n\n## Usage\n\ntfvc will scan the specified directories and report on the configuration of providers and module calls.\n\nThe exit status will be non-zero if tfvc finds problems, otherwise the exit status will be zero.\n\n```bash\ntfvc .\n```\n\nThe following parameters are available.\n\n| Parameter                   | Type                  | Description                                     |\n| --------------------------- | --------------------- | ----------------------------------------------- |\n| --include-passed, -a        | bool (default: false) | Include passed checks in console output         |\n| --include-prerelease, -e    | bool (default: false) | Include prerelease versions in checks           |\n| --ssh-private-key-path, -s, | string (default: \"\")  | Path to private key to use for SSH module calls |\n| --ssh-private-key-pwd, -w   | string (default: \"\")  | Password for private key file if required       |\n\n## Docker usage\n\nAs an alternative to installing and running tfvc on your system, you can run tfvc in a Docker container, for example:\n\n```bash\ndocker run --rm -it -v \"$(pwd):/src\" tfverch/tfvc /src\n```\n\n## Motivation\n\nWhile tools such as [dependabot](https://github.com/dependabot) and [renovate](https://docs.renovatebot.com/) provide fully automate dependency updates, I needed something with a lighter touch. tfvc aims to be a simple reporting tool that can be run either locally, or as part of a CI/CD pipeline, to give you feedback on any modules or providers which have updates available.\n\n## Acknowledgements\n\nThis project started as a fork of the [github.com/keilerkonzept/terraform-module-versions](https://github.com/keilerkonzept/terraform-module-versions) project. However, given the changes that I needed to make to add the features that I wanted to, I ended up migrating to this repo. Still, shout out to [keilerkonzept](https://github.com/keilerkonzept) for their work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfverch%2Ftfvc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftfverch%2Ftfvc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfverch%2Ftfvc/lists"}