{"id":16687277,"url":"https://github.com/highb/asdf-teleport-ent","last_synced_at":"2025-10-31T00:31:10.744Z","repository":{"id":40487482,"uuid":"470335722","full_name":"highb/asdf-teleport-ent","owner":"highb","description":"Teleport Enterprise CLI Version Management","archived":false,"fork":false,"pushed_at":"2024-10-20T21:57:35.000Z","size":65,"stargazers_count":6,"open_issues_count":3,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-02T16:11:12.566Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/highb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"contributing.md","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":"2022-03-15T21:22:06.000Z","updated_at":"2024-11-29T06:54:27.000Z","dependencies_parsed_at":"2023-01-29T00:32:17.270Z","dependency_job_id":"45a9664c-3cfe-48d8-97d3-c27495fcd2d3","html_url":"https://github.com/highb/asdf-teleport-ent","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":"asdf-vm/asdf-plugin-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highb%2Fasdf-teleport-ent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highb%2Fasdf-teleport-ent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highb%2Fasdf-teleport-ent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highb%2Fasdf-teleport-ent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/highb","download_url":"https://codeload.github.com/highb/asdf-teleport-ent/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239084400,"owners_count":19578773,"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":[],"created_at":"2024-10-12T15:08:35.352Z","updated_at":"2025-10-31T00:31:10.715Z","avatar_url":"https://github.com/highb.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# asdf-teleport-ent [![Build](https://github.com/highb/asdf-teleport-ent/actions/workflows/build.yml/badge.svg)](https://github.com/highb/asdf-teleport-ent/actions/workflows/build.yml) [![Lint](https://github.com/highb/asdf-teleport-ent/actions/workflows/lint.yml/badge.svg)](https://github.com/highb/asdf-teleport-ent/actions/workflows/lint.yml)\n\n\n[teleport-ent](https://goteleport.com/docs/server-access/guides/tsh/) plugin for the [asdf version manager](https://asdf-vm.com) and [mise](https://mise.jdx.dev/).\n\n\u003c/div\u003e\n\n# Contents\n\n- [Dependencies](#dependencies)\n- [Install](#install)\n- [Why?](#why)\n- [Contributing](#contributing)\n- [License](#license)\n\n# Dependencies\n\n- `bash`, `curl`, `tar`: generic POSIX utilities.\n- `SOME_ENV_VAR`: set this environment variable in your shell config to load the correct version of tool x.\n\n# Install\n\n## With asdf\n\nPlugin:\n\n```shell\nasdf plugin add teleport-ent\n# or\nasdf plugin add teleport-ent https://github.com/highb/asdf-teleport-ent.git\n```\n\nteleport-ent:\n\n```shell\n# Show all installable versions\nasdf list all teleport-ent\n\n# Install latest version\nasdf install teleport-ent latest\n\n# Install specific version\nasdf install teleport-ent 14.2.2\n\n# Set a version globally (on your ~/.tool-versions file)\nasdf set -u teleport-ent latest\n\n# Set a version locally for the current directory and all sub-directories\n# This will also create a .tool-versions file which can be checked in to source control.\nasdf set teleport-ent 14.2.2\n\n# Now teleport-ent commands are available\ntsh version\ntctl version\nteleport version\n```\n\n## With mise\n\nPlugin:\n\n```shell\nmise plugin install teleport-ent\n# or\nmise plugin install teleport-ent https://github.com/highb/asdf-teleport-ent.git\n```\n\nteleport-ent:\n\n```shell\n# Show all installable versions\nmise ls-remote teleport-ent\n\n# Install latest version\nmise install teleport-ent@latest\n\n# Install specific version\nmise install teleport-ent@14.2.2\n\n# Set a version globally (on your ~/.tool-versions file)\nmise global teleport-ent@latest\n\n# Set a version locally for the current directory and all sub-directories\n# This will also create a .tool-versions file which can be checked in to source control.\nmise local teleport-ent@14.2.2\n\n# Set a version for the current shell\nmise shell teleport-ent@14.2.2\n\n# Now teleport-ent commands are available\ntsh version\ntctl version\nteleport version\n```\n\nCheck [asdf](https://github.com/asdf-vm/asdf) or [mise](https://mise.jdx.dev/) documentation for more instructions on how to install \u0026 manage versions.\n\n# Why?\n\nWhen testing out version upgrades on Teleport, I frequently found myself jumping between\ntsh/tctl versions and decided that I didn't want to manage a bunch of symlinks manually\nso I made an asdf plugin. This plugin works with both asdf and mise version managers.\n\n*I do not work for Gravitational* so this does not come with any support guarantees, but\nplease feel free to open a PR if you find a version that you need is missing or you need\nsome functionality added.\n\n# Contributing\n\nContributions of any kind welcome! See the [contributing guide](contributing.md).\n\n[Thanks goes to these contributors](https://github.com/highb/asdf-teleport-ent/graphs/contributors)!\n\n# License\n\nSee [LICENSE](LICENSE) © [Brandon High](https://github.com/highb/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighb%2Fasdf-teleport-ent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhighb%2Fasdf-teleport-ent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighb%2Fasdf-teleport-ent/lists"}