Terraform | Episode 7 | Installing Terraform on Windows EC2 instance | Install Terraform on Windows.

Опубликовано: 01 Октябрь 2024
на канале: DGR Uploads
1,160
49

====================================================================
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!!