A Terraform project to deploy [brief description of infrastructure, e.g., "AWS VPC, EKS, and RDS"].
- Deploys [list key features, e.g., "Highly available AWS infrastructure"].
- Uses [specific tools/modules, e.g., "Terraform AWS Modules"].
- Supports [any special configurations, e.g., "multi-region deployment"].
sudo apt-get update && sudo apt-get install -y gnupg software-properties-common
wget -O- https://apt.releases.hashicorp.com/gpg | \
gpg --dearmor | \
sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
gpg --no-default-keyring \
--keyring /usr/share/keyrings/hashicorp-archive-keyring.gpg \
--fingerprint
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] \
https://apt.releases.hashicorp.com $(lsb_release -cs) main" | \
sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update
sudo apt-get install terraform
To confirm Terraform is installed, run:
terraform -version
You should see an output similar to:
Terraform v1.x.x