Complete the command to download Terraform on Linux using wget.
wget [1]The correct URL points directly to the official Terraform Linux 64-bit zip file for version 1.5.7.
Complete the command to unzip the Terraform binary after download.
unzip [1]The unzip command requires the exact filename of the downloaded Terraform zip archive.
Fix the error in the command to move Terraform binary to /usr/local/bin.
sudo mv [1] /usr/local/bin/terraformAfter unzipping, the binary file is named 'terraform'. Moving the zip or wrong file will cause errors.
Fill both blanks to verify Terraform installation and check its version.
[1] [2]
The command 'terraform --version' shows the installed Terraform version.
Fill all three blanks to add Terraform to PATH temporarily in Linux.
export PATH=[1]:[2]/[3]
This command appends /usr/local/bin to the existing PATH environment variable temporarily.