Install Terraform with tfenv

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
  1. tfenv

    Terraform version manager

    git clone https://github.com/tfutils/tfenv.git ~/.tfenv export PATH="$HOME/.tfenv/bin:$PATH" # install to appropriate shell startup file, e.g. $HOME/.bashrc echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.profile

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. terraform

    Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

    Most tooling for infrastructure operations runs on Intel processors, called the amd64 architecture with in Terraform, but given the recent addition of Macbook M1 laptops, the architecture is arm64. Older versions of Terraform that may be needed will require installing Terraform that is only available on Intel processors (amd64 binaries). This can be installed using tfenv as well.

  4. ruby

    The Ruby Programming Language

    There will come a time when you will need to change to different versions of Terraform. Similar to tools like rbenv for Ruby or pyenv for Python, there's a popular tool used to install different versions of Terraform called tfenv.

  5. CPython

    The Python programming language

    There will come a time when you will need to change to different versions of Terraform. Similar to tools like rbenv for Ruby or pyenv for Python, there's a popular tool used to install different versions of Terraform called tfenv.

  6. Puts Debuggerer

    Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.

    ARCH="darwin_amd64" # install amd64 plugin for legacy terraform VERS="1.11.2" PKG="terraform-provider-kubectl_${VERS}_${ARCH}.zip" REPO="gavinbunney/terraform-provider-kubectl" URL="https://github.com/${REPO}/releases/download/v${VERS}/${PKG}" # setup plugins directory if this does not exist already mkdir -p $HOME/.terraform.d/plugins/${ARCH}/ # download archive pushd ~/Downloads curl -sOL $URL unzip $PKG && rm README.md LICENSE mv terraform-provider-kubectl_v${VERS} $HOME/.terraform.d/plugins/${ARCH}/ popd

  7. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • IPv6 Is Hard

    2 projects | news.ycombinator.com | 16 Feb 2025
  • The Essential Guide to Internal Developer Platforms

    3 projects | dev.to | 13 Mar 2024
  • Learning Go by examples: part 12 - Deploy Go apps in Go with CDK for Terraform (CDKTF)

    5 projects | dev.to | 7 Mar 2024
  • Deploying container applications on AWS with CI/CD pipelines

    5 projects | dev.to | 10 Nov 2023
  • An Excruciatingly Detailed Guide to SSH (But Only the Things I Find Useful)

    3 projects | news.ycombinator.com | 23 Aug 2023

Did you know that Ruby is
the 12th most popular programming language
based on number of references?