Terraform Lifecycle
Notes for the Hashicorp Tutorial
Install
Install
apt (Ubuntu)
apt (Ubuntu)
sudo apt update && sudo apt install -y gnupg software-properties-common curl wget
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
yum (Oracle Linux 9)
yum (Oracle Linux 9)
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
sudo yum -y install terraform
Enable tab completion
Enable tab completion
touch ~/.bashrc
terraform -install-autocomplete
Bibliography
Bibliography