{"id":23316884,"url":"https://github.com/tfversion/tfversion","last_synced_at":"2025-10-20T07:29:11.411Z","repository":{"id":224264802,"uuid":"755872097","full_name":"tfversion/tfversion","owner":"tfversion","description":"A simple tool to manage Terraform versions","archived":false,"fork":false,"pushed_at":"2025-04-08T18:31:11.000Z","size":11462,"stargazers_count":17,"open_issues_count":6,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-09T08:40:01.622Z","etag":null,"topics":["cobra","go","hashicorp","installer","terraform","version-manager"],"latest_commit_sha":null,"homepage":"https://tfversion.xyz","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tfversion.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":"2024-02-11T10:44:53.000Z","updated_at":"2025-02-10T21:28:16.000Z","dependencies_parsed_at":"2024-08-29T10:57:31.089Z","dependency_job_id":"f645d4d3-617f-483d-8b0e-f3046021d370","html_url":"https://github.com/tfversion/tfversion","commit_stats":null,"previous_names":["tfversion/tfversion"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/tfversion/tfversion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfversion%2Ftfversion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfversion%2Ftfversion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfversion%2Ftfversion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfversion%2Ftfversion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tfversion","download_url":"https://codeload.github.com/tfversion/tfversion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfversion%2Ftfversion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271658819,"owners_count":24798179,"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","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cobra","go","hashicorp","installer","terraform","version-manager"],"created_at":"2024-12-20T16:16:55.918Z","updated_at":"2025-10-20T07:29:06.360Z","avatar_url":"https://github.com/tfversion.png","language":"Go","readme":"# tfversion\n\n\u003cimg src=\"https://storage.googleapis.com/gopherizeme.appspot.com/gophers/31e433b6b4ea0e11257fffebe26893d2259f34c6.png\" width=\"125\" height=\"125\"\u003e [![Release](https://github.com/tfversion/tfversion/actions/workflows/goreleaser.yaml/badge.svg)](https://github.com/tfversion/tfversion/actions/workflows/goreleaser.yaml) ![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/tfversion/tfversion) [![Go Reference](https://pkg.go.dev/badge/github.com/tfversion/tfversion.svg)](https://pkg.go.dev/github.com/tfversion/tfversion)\n\nA simple tool to manage Terraform versions.\n\n## Brew\n\nTo install tfversion using brew, simply run:\n\n```sh\nbrew install tfversion/tap/tfversion\n```\n\n## Binaries\n\nYou can download the [latest binary](https://github.com/tfversion/tfversion/releases/latest) for Linux, MacOS, and Windows.\n\n## Configuring your shell\n\nTo ensure that `tfversion` is always available in your shell, append the following line to your shell profile (e.g., .bashrc, .zshrc or fish config):\n\n```sh\nexport PATH=\"$HOME/.tfversion/bin:$PATH\"\n```\n\nWe prefer to not automagically modify your shell profile, and therefore leave this step to you.\n\n## Examples\n\n`tfversion` is user-friendly and easy to use. For more information, please visit the [documentation](https://tfversion.xyz/use.html).\n\n### Install a specific version\n\n```sh\ntfversion install 1.7.0\n```\n\n### Install the latest stable version\n\n```sh\ntfversion install --latest\n```\n\n### Install the latest pre-release version\n\n```sh\ntfversion install --latest --pre-release\n```\n\n### Install the required version for your current directory\n\n```sh\ntfversion install --required\n```\n\n### Use a specific version\n\n```sh\ntfversion use 1.7.0\n```\n\n### Use the latest stable version\n\n```sh\ntfversion use --latest\n```\n\n### Use the latest pre-release version\n\n```sh\ntfversion use --latest --pre-release\n```\n\n### Use the required version for your current directory\n\n```sh\ntfversion use --required\n```\n\n### Automatically install a version when using\n\n```sh\ntfversion use 1.7.4 --install\ntfversion use --latest --install\n```\n\n### Create and use an alias\n\n```sh\ntfversion alias default 1.7.4\ntfversion use default\n```\n\n### List versions\n\n```sh\ntfversion list\n```\n\n### List installed versions\n\n```sh\ntfversion list --installed\n```\n\n### List aliased versions\n\n```sh\ntfversion list --aliases\n```\n\n### List pre-release versions\n\n```sh\ntfversion list --pre-release\n```\n\n### Uninstall a specific version\n\n```sh\ntfversion uninstall 1.7.4\n```\n\n### Display the currently activated version of Terraform\n```sh\ntfversion current\n```\n\n## Contributing\n\nContributions are highly appreciated and always welcome.\nHave a look through existing [Issues](https://github.com/tfversion/tfversion/issues) and [Pull Requests](https://github.com/tfversion/tfversion/pulls) that you could help with.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfversion%2Ftfversion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftfversion%2Ftfversion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfversion%2Ftfversion/lists"}