Skip to content

Instantly share code, notes, and snippets.

View CalebSargeant's full-sized avatar

Caleb Sargeant CalebSargeant

View GitHub Profile
@gryzinsky
gryzinsky / Install Terraform and Terragrunt.sh
Last active September 15, 2025 09:33
Install Terraform and Terragrunt
#!/usr/bin/env sh
# Install Terraform
sudo apt-get update && \
sudo apt-get install -y gnupg software-properties-common curl && \
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - && \
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main" && \
sudo apt-get update && \
sudo apt-get install terraform