asdf-hashicorp VS asdf

Compare asdf-hashicorp vs asdf and see what are their differences.

asdf-hashicorp

HashiCorp plugin for the asdf version manager (by Banno)

asdf

Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more (by asdf-vm)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
asdf-hashicorp asdf
6 340
223 20,448
3.1% 2.8%
4.6 7.9
10 days ago 2 days ago
Shell Shell
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

asdf-hashicorp

Posts with mentions or reviews of asdf-hashicorp. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-17.
  • Help needed installing an old version of terraform
    2 projects | /r/Terraform | 17 Oct 2022
    brew install asdf asdf plugin-add terraform https://github.com/asdf-community/asdf-hashicorp.git asdf install terraform 0.12 asdf exec terraform destroy
  • Asdf Performance
    9 projects | news.ycombinator.com | 12 Aug 2022
    I'm a huge fan of asdf and have been using for years together with direnv! It's great to see how much effort is put into it! I hope more people adopt it so that we don't have to `curl | sh`! One thing I have issues with asdf is security as are no checksums, so, you if I project get compromised you'll get compromised, too. This, of course, is in addition to the third-party asdf plugin getting itself compromised (which is the greater risk). Last, but not least - I wish asdf came with something like eget [0] incorporated so that it can install 99% of the plugins directly and safely! Last, but not least - 99% of the plugins have almost identical code and all that changes is the repo, so, this should be generalized. For example, many years ago I made just one codebase of all HashiCorp plugins [1] and it's been working great!

    [0]: https://github.com/zyedidia/eget

    [1]: https://github.com/asdf-community/asdf-hashicorp

  • Gerenciando versão de ferramentas com asdf/asdf-vm
    6 projects | dev.to | 6 Nov 2021
  • Share a GPU between pods on AWS EKS
    10 projects | dev.to | 4 Nov 2021
  • ASDF or how to manage multiple runtime versions.
    17 projects | dev.to | 28 Mar 2021
    CMD> asdf plugin list all Output sample: [...] kubebuilder https://github.com/virtualstaticvoid/asdf-kubebuilder.git kube-capacity https://github.com/looztra/asdf-kube-capacity.git kubectl *https://github.com/Banno/asdf-kubectl.git kubectl-bindrole https://github.com/looztra/asdf-kubectl-bindrole.git kubectx *https://gitlab.com/wt0f/asdf-kubectx.git kubefedctl https://github.com/kvokka/asdf-kubefedctl.git kubeseal https://github.com/stefansedich/asdf-kubeseal.git kubesec https://github.com/vitalis/asdf-kubesec.git kubespy https://github.com/jfreeland/asdf-kubespy.git kubeval https://github.com/stefansedich/asdf-kubeval.git terraform *https://github.com/Banno/asdf-hashicorp.git terraform-docs *https://github.com/looztra/asdf-terraform-docs.git terraform-lsp https://github.com/bartlomiejdanek/terraform-lsp.git terraform-validator https://github.com/looztra/asdf-terraform-validator.git terragrunt https://github.com/lotia/asdf-terragrunt.git [...]
  • Asdf – An Extendable Version Manager
    9 projects | news.ycombinator.com | 3 Feb 2021
    I've been using it and has contributed to it, but I wish it supported out of the box GitHub-based release binaries as 90% of my code for different vendors was relatively the same, so, instead of having multiple identical repositories, I created one, which uses introspection [0].

    I wish this was available out of the box to handle literary 90% of the tools.

    Also, I typically pair it with direnv [1] for even more magic.

    [0]: https://github.com/Banno/asdf-hashicorp

    [1]: https://direnv.net/

asdf

Posts with mentions or reviews of asdf. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.
  • Show HN: I made a multiple runtime version manager that can be used on Windows
    4 projects | news.ycombinator.com | 22 Apr 2024
  • Volta – Fastest Node version manager in Rust
    2 projects | news.ycombinator.com | 25 Mar 2024
    Or if you need to manage more than just node, asdf has been around for over a decade and works great. You can use a .tool-versions to change runtimes for each project you have, in addition to managing your global runtime versions

    https://asdf-vm.com/

  • Pyenv – lets you easily switch between multiple versions of Python
    20 projects | news.ycombinator.com | 25 Mar 2024
    Why not just use a tool like asdf (https://asdf-vm.com/) or mise (https://mise.jdx.dev/)?

    These tools have the advantage of not being multi-taskers and can manage version for all your tools. You wouldn’t need pyenv and npm and rvm and…

    We’ve even started committing the .mise.toml files for projects to our repos. That way, since we work on multiple projects that may need multiple versions of the same tool, it’s handled and documented.

  • A Journey to Find an Ultimate Development Environment
    13 projects | dev.to | 2 Feb 2024
    The purpose of a version manager is to help you navigate or install any tools for development easily. Version Manager can be one tool for each dependency (e.g. NVM, g) or One tool for all dependencies (e.g. asdf, mise).
  • How to Install Your Python Version on Ubuntu
    1 project | news.ycombinator.com | 28 Jan 2024
    (asdf)[https://asdf-vm.com/] fully supports Python and almost any other language. I've been using it for Ruby, Python, Elixir, and other languages for years and never looked back.
  • Beginners Intro to Trunk Based Development
    4 projects | dev.to | 4 Jan 2024
    Secondly, our development environments must not drift, because then code may behave differently and a change could pass on our machine but fail in production. There are many tools for locking down environments, e.g nix, pkgx, asdf, containers, etc., and they all share the common goal of being able to lock down dependencies for an environment accurately and deterministically. And that needs to be enforced in our local workflow so we don't have to rely on CI environments for correctness. All developers must have environments that are effectively identical to what runs in CI (which itself should be representative of the production environment).
  • Practical Guide to Trunk Based Development
    4 projects | dev.to | 4 Jan 2024
    There are many ways this can be done (e.g nix, pkgx, asdf, containers, etc.), and we won’t get into which specific tools to use, because we'll instead cover the essential essence of preventing environment drift:
  • Criando seu ambiente com ASDF
    4 projects | dev.to | 29 Dec 2023
  • Kotlin version manager
    2 projects | /r/Kotlin | 7 Dec 2023
    I've really been enjoying asdf, which is a program that allows you to install specified versions of dev utilities as well as dynamically manage them via shims and .tool-versions files.
  • How do i keep my "devops tool" always up to date in a smart way ?
    2 projects | /r/devops | 6 Dec 2023
    I use the asdf version manager.

What are some alternatives?

When comparing asdf-hashicorp and asdf you can also consider the following projects:

asdf-terraform-docs - terraform-docs (https://github.com/segmentio/terraform-docs) plugin for asdf

SDKMan - The SDKMAN! Command Line Interface

asdf-flutter - Flutter plugin for the asdf version manager

pyenv - Simple Python version management

terraform-provider-kubernetes - Terraform Kubernetes provider

rbenv - Manage your app's Ruby environment

asdf-plugins - Convenience shortname repository for asdf community plugins

nvm - Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions

asdf-nodejs - Node.js plugin for asdf version manager

volta - Volta: JS Toolchains as Code. ⚡

asdf-terragrunt - Terragrunt plugin for the asdf version manager

HomeBrew - 🍺 The missing package manager for macOS (or Linux)