====================================================================
Subscribe : / @dgruploads
====================================================================
Hello,
In this session, we will look at how we can install Terraform on Windows EC2 instance running on AWS. Here we are using the Windows AMI.
You can run the below commands for installing Terraform on Windows machine.
Command to check if choco is installed
choco --version
Command to install choco on windows machine
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/inst...)
Command to install Terraform
choco install terraform
Command to check if Terraform in installed
terraform --version
Happy learning!!