Terraform is used for provisioning infrastructure on Cloud. You don't need to
create manually any resource in AWS. Please find steps for installing Terraform on Apple machine or laptop.
cd /opt/terraform
Download Terraform from Hasicorp website
Please go to https://www.terraform.io/downloads.html
Download Terraform installable zip file for MacOS
Create a working directory
sudo mkdir -p /opt/terraform
Download Terraform from Hasicorp website
Please go to https://www.terraform.io/downloads.html
Download Terraform installable zip file for MacOS
sudo curl -O https://releases.hashicorp.com/terraform/1.6.2/terraform_1.6.2_darwin_amd64.zip
Now unzip the above file by executing below command:
sudo unzip terraform_1.6.2_darwin_amd64.zip
after you unzip, you should see terraform file as shown above.
Add terraform to PATH
Execute below command to edit bash profile. Go to home directory.
cd ~
sudo vi ~/.bash_profile
Go all the way to end of the file. Add below lines as shown in screenshot below:
PATH="/opt/terraform:${PATH}"
export PATH
Execute the file
source ~/.bash_profile
Now make sure terraform is available from anywhere to execute.
terraform --version
Terraform v1.6.2
That's it! You have successfully installed Terraform on Mac OS.
You can also watch the steps in my YouTube channel as well.
Now unzip the above file by executing below command:
sudo unzip terraform_1.6.2_darwin_amd64.zip
after you unzip, you should see terraform file as shown above.
Add terraform to PATH
Execute below command to edit bash profile. Go to home directory.
cd ~
sudo vi ~/.bash_profile
Go all the way to end of the file. Add below lines as shown in screenshot below:
PATH="/opt/terraform:${PATH}"
export PATH
Execute the file
source ~/.bash_profile
Now make sure terraform is available from anywhere to execute.
Terraform v1.6.2
That's it! You have successfully installed Terraform on Mac OS.
You can also watch the steps in my YouTube channel as well.
No comments:
Post a Comment