DEV Community

Kevin Mack
Kevin Mack

Posted on • Originally published at welldocumentednerd.com on

Configuring Terraform Development Environment

So I’ve been doing a lot of work with a set of open source tools lately, specifically TerraForm and Packer. TerraForm at its core is a method of implementing truly Infrastructure as Code, and does so by providing a simple function style language where you can create basic implementations for the cloud, and then leverage resource providers to deploy. These resource providers allow you to deploy to variety of cloud platforms (the full list can be found here). It also provides robust support for debugging, targeting, and supports a desired state configuration approach that makes it much easier to maintain your environments in the cloud.

Now that being said, like most open source tools, it can require some configuration for your local development environment and I wanted to put this post together to describe it. Below are the steps to configuring your environment.

Step 1: Install Windows SubSystem on your Windows 10 Machine

To start with, you will need to be able to leverage bash as part of the Linux Subsystem. You can enable this on a Windows 10 machine, by following the steps outlined in this guide:

https://docs.microsoft.com/en-us/windows/wsl/install-win10

Once you’ve completed this step, you will be able to move forward with VS Code and the other components required.

Step 2: Install VS Code and Terraform Plugins

For this guide we recommend VS Code as your editor, VS code works on a variety of operating systems, and is a very light-weight code editor.

You can download VS Code from this link:

https://code.visualstudio.com/download

Once you’ve downloaded and installed VS code, we need to install the VS Code Extension for Terraform.

Then click “Install” and “Reload” when completed. This will allow you to have intelli-sense and support for the different terraform file types.

Step 3: Opening Terminal

You can then perform the remaining steps from the VS Code application. Go to the “View” menu and select “integrated terminal”. You will see the terminal appear at the bottom:

By default, the terminal is set to “powershell”, type in “Bash” to switch to Bash Scripting. You can default your shell following this guidance – https://code.visualstudio.com/docs/editor/integrated-terminal#_configuration

Step 4: Install Unzip on Subsystem

Run the following command to install “unzip” on your linux subsystem, this will be required to unzip both terraform and packer.

sudo apt-get install unzip

Step 5: Install TerraForm

You will need to execute the following commands to download and install Terraform, we need to start by getting the latest version of terraform.

Go to this link:

https://www.terraform.io/downloads.html

And copy the link for the appropriate version of the binaries for TerraForm.

Go back to VS Code, and enter the following command: [code]]czoyNDpcIndnZXQge3VybCBmb3IgdGVycmFmb3JtfVwiO3tbJiomXX0=[[/code] Then Run the following commands in sequence: [code]]czozMTpcInVuemlwIHt0ZXJyYWZvcm0uemlwIGZpbGUgbmFtZX1cIjt7WyYqJl19[[/code] [code]]czo0MjpcInN1ZG8gbXYgdGVycmFmb3JtIC91c3IvbG9jYWwvYmluL3RlcnJhZm9ybVwiO3tbJiomXX0=[[/code] [code]]czoyODpcInJtIHt0ZXJyYWZvcm0uemlwIGZpbGUgbmFtZX1cIjt7WyYqJl19[[/code] Confirm the installation by typing the following command: [code]]czoxOTpcInRlcnJhZm9ybSAtLXZlcnNpb25cIjt7WyYqJl19[[/code]

Step 6: Install Packer

To start with, we need to get the most recent version of packer. Go to the following Url, and copy the url of the appropriate version.

https://www.packer.io/downloads.html

Go back to VS Code and execute the following commands:

[code]]czoxNzpcIndnZXQge3BhY2tlciB1cmx9XCI7e1smKiZdfQ==[[/code]

[code]]czoyODpcInVuemlwIHtwYWNrZXIuemlwIGZpbGUgbmFtZX1cIjt7WyYqJl19[[/code]

[code]]czozNjpcInN1ZG8gbXYgcGFja2VyIC91c3IvbG9jYWwvYmluL3BhY2tlclwiO3tbJiomXX0=[[/code]

[code]]czoyNTpcInJtIHtwYWNrZXIuemlwIGZpbGUgbmFtZX1cIjt7WyYqJl19[[/code]

Step 7: Install Azure CLI 2.0

Go back to VS Code again, and download / install azure CLI. To do so, execute the steps and commands found here:

https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-apt?view=azure-cli-latest

Step 8: Authenticating against Azure

Once this is done you are in a place where you can run terraform projects, but before you do, you need to authenticate against Azure. This can be done by running the following commands in the bash terminal (see link below):

https://docs.microsoft.com/en-us/azure/azure-government/documentation-government-get-started-connect-with-cli

Once that is completed, you will be authenticated against Azure and will be able to update the documentation for the various environments.

NOTE: Your authentication token will expire, should you get a message about an expired token, enter the command, to refresh:

[code]]czoyNzpcImF6IGFjY291bnQgZ2V0LWFjY2Vzcy10b2tlblwiO3tbJiomXX0=[[/code]

Token lifetimes can be described here – https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-token-and-claims#access-tokens

After that you are ready to use Terraform on your local machine.

Oldest comments (0)