Terraform

Terraform Tutorial for Beginners

Photo of Bhagvan KommadiBhagvan KommadiFebruary 16th, 2022Last Updated: November 4th, 2022
0 211 5 minutes read

This is a Terraform tutorial for beginners.

1. Overview

Terraform was created on May 21st, 2014 by Mitchell Hashimoto. Hashimoto was Hashicorp’s founder. Terraform is used for building code and handling infrastructure security. Terraform is a popular DevOps tool in the software world.

2. Terraform Tutorial

2.1 Prerequisites

Terraform is necessary on the operating system in which you want to execute the code.

2.2 Download

You can download Terraform from this website.

2.3 Setup

2.3.1 Terraform Setup

You can set up the Terraform by using the command below on macOS:

Terraform Setup

brew tap hashicorp/tapbrew install hashicorp/tap/terraform

You can run this command to check if it is working:

Terraform Execution

 terraform -v

The output of the above command executed is shown below:

Terraform Execution Output

apples-MacBook-Air:~ bhagvan.kommadi$  terraform -vTerraform v1.1.5on darwin_amd64apples-MacBook-Air:~ bhagvan.kommadi$

The terraform execution command has other options which are shown below:

Terraform Execution Options

$ terraform Usage: terraform [-version] [-help]  [args] ... help content omitted

2.4 Start a New Terraform Project

You can create a Terraform Project using resource definitions. Resource definitions are the files with the suffix .tf. You can use Terraform’s language for configuring the resources like EC2 instance, an Azure MariaDB, or a DNS entry. You can create a sample Terraform project with the commands shown below:

Terraform Project Creation Commands

$ cd $HOME$ mkdir sample-terraform$ cd sample-terraform$ cat > main.tf <<EOFprovider "local" {  version = "~> 1.4" }resource "local_file" "sample" {content = "sample, Terraform"filename = "sample.txt"}EOF

The above main.tf file has resource and provider definitions. Local provider version 1.4 or other compatible version is used. sample of type local_file has the resource definition. You can run the terraform project by using the command below:

Terraform Project Execution

terraform init

The output of the above command when executed is shown below:

Terraform Project Execution Output

apples-MacBook-Air:sample-terraform bhagvan.kommadi$ terraform initInitializing the backend...Initializing provider plugins...- Finding hashicorp/local versions matching "~> 1.4"...- Installing hashicorp/local v1.4.0...- Installed hashicorp/local v1.4.0 (signed by HashiCorp)Terraform has created a lock file .terraform.lock.hcl to record the providerselections it made above. Include this file in your version control repositoryso that Terraform can guarantee to make the same selections by default whenyou run "terraform init" in the future.╷│ Warning: Version constraints inside provider configuration blocks are deprecated│ │   on main.tf line 2, in provider "local":│    2:   version = "~> 1.4"│ │ Terraform 0.13 and earlier allowed provider version constraints inside the│ provider configuration block, but that is now deprecated and will be removed│ in a future version of Terraform. To silence this warning, move the provider│ version constraint into the required_providers block.╵Terraform has been successfully initialized!You may now begin working with Terraform. Try running "terraform plan" to seeany changes that are required for your infrastructure. All Terraform commandsshould now work.If you ever set or change modules or backend configuration for Terraform,rerun this command to reinitialize your working directory. If you forget, othercommands will detect it and remind you to do so if necessary.

Above, terraform reads the project files and downloads the required providers from publicregistries. The next step is to execute the plan command as shown below:

Terraform Project Execution – Plan

 terraform plan

The output of the above command when executed is shown below:

Terraform Project Execution – Plan Output

apples-MacBook-Air:sample-terraform bhagvan.kommadi$ terraform planTerraform used the selected providers to generate the following execution plan.Resource actions are indicated with the following symbols:  + createTerraform will perform the following actions:  # local_file.sample will be created  + resource "local_file" "sample" {      + content              = "sample, Terraform"      + directory_permission = "0777"      + file_permission      = "0777"      + filename             = "sample.txt"      + id                   = (known after apply)    }Plan: 1 to add, 0 to change, 0 to destroy.╷│ Warning: Version constraints inside provider configuration blocks are deprecated│ │   on main.tf line 2, in provider "local":│    2:   version = "~> 1.4"│ │ Terraform 0.13 and earlier allowed provider version constraints inside the│ provider configuration block, but that is now deprecated and will be removed│ in a future version of Terraform. To silence this warning, move the provider│ version constraint into the required_providers block.╵───────────────────────────────────────────────────────────────────────────────Note: You didn't use the -out option to save this plan, so Terraform can'tguarantee to take exactly these actions if you run "terraform apply" now.apples-MacBook-Air:sample-terraform bhagvan.kommadi$

The above terraform plan command helps in verifying the actions for resource creation. Terraform assumes that default values will be used where ever you have not shared them in the resource definition. You can now execute the apply command for resource creation.

Terraform Project Execution – Apply

 terraform apply

The output of the above command when executed is shown below:

Terraform Project Execution – Apply Output

apples-MacBook-Air:sample-terraform bhagvan.kommadi$ terraform applyTerraform used the selected providers to generate the following execution plan.Resource actions are indicated with the following symbols:  + createTerraform will perform the following actions:  # local_file.sample will be created  + resource "local_file" "sample" {      + content              = "sample, Terraform"      + directory_permission = "0777"      + file_permission      = "0777"      + filename             = "sample.txt"      + id                   = (known after apply)    }Plan: 1 to add, 0 to change, 0 to destroy.╷│ Warning: Version constraints inside provider configuration blocks are deprecated│ │   on main.tf line 2, in provider "local":│    2:   version = "~> 1.4"│ │ Terraform 0.13 and earlier allowed provider version constraints inside the│ provider configuration block, but that is now deprecated and will be removed│ in a future version of Terraform. To silence this warning, move the provider│ version constraint into the required_providers block.╵Do you want to perform these actions?  Terraform will perform the actions described above.  Only 'yes' will be accepted to approve.  Enter a value: yeslocal_file.sample: Creating...local_file.sample: Creation complete after 0s [id=37d2f5fd67a0734d5d8d1626a47ae46f5b4dee17]Apply complete! Resources: 1 added, 0 changed, 0 destroyed.apples-MacBook-Air:sample-terraform bhagvan.kommadi$

In the above command, the execution plan is generated. You can see the sample.txt. It will have the expected content Sample, Terraform.

Terraform Project Execution – Sample.txt

sample, Terraform

You can run the apply-auto-approve command next.

Terraform Project Execution – Apply Auto Approve

terraform apply -auto-approve

The output of the above command when executed is shown below:

Terraform Project Execution – Apply Auto Approve Output

apples-MacBook-Air:sample-terraform bhagvan.kommadi$ terraform apply -auto-approvelocal_file.sample: Refreshing state... [id=37d2f5fd67a0734d5d8d1626a47ae46f5b4dee17]No changes. Your infrastructure matches the configuration.Terraform has compared your real infrastructure against your configuration andfound no differences, so no changes are needed.╷│ Warning: Version constraints inside provider configuration blocks are deprecated│ │   on main.tf line 2, in provider "local":│    2:   version = "~> 1.4"│ │ Terraform 0.13 and earlier allowed provider version constraints inside the│ provider configuration block, but that is now deprecated and will be removed│ in a future version of Terraform. To silence this warning, move the provider│ version constraint into the required_providers block.╵Apply complete! Resources: 0 added, 0 changed, 0 destroyed

You can have modules in Terraform which can have resources defined across different projects.

3. Download the Source Code

Download
You can download the full source code of this example here:Terraform Tutorial for Beginners
Do you want to know how to develop your skillset to become aJava Rockstar?
Subscribe to our newsletter to start Rockingright now!
To get you started we give you our best selling eBooks forFREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to theTerms andPrivacy Policy

Thank you!

We will contact you soon.

Photo of Bhagvan KommadiBhagvan KommadiFebruary 16th, 2022Last Updated: November 4th, 2022
0 211 5 minutes read
Photo of Bhagvan Kommadi

Bhagvan Kommadi

Bhagvan Kommadi is the Founder of Architect Corner & has around 20 years’ experience in the industry, ranging from large scale enterprise development to helping incubate software product start-ups. He has done Masters in Industrial Systems Engineering at Georgia Institute of Technology (1997) and Bachelors in Aerospace Engineering from Indian Institute of Technology, Madras (1993). He is member of IFX forum,Oracle JCP and participant in Java Community Process. He founded Quantica Computacao, the first quantum computing startup in India. Markets and Markets have positioned Quantica Computacao in ‘Emerging Companies’ section of Quantum Computing quadrants. Bhagvan has engineered and developed simulators and tools in the area of quantum technology using IBM Q, Microsoft Q# and Google QScript. He has reviewed the Manning book titled : "Machine Learning with TensorFlow”. He is also the author of Packt Publishing book - "Hands-On Data Structures and Algorithms with Go".He is member of IFX forum,Oracle JCP and participant in Java Community Process. He is member of the MIT Technology Review Global Panel.
Subscribe
Notify of
guest
I agree to theTerms andPrivacy Policy
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.

I agree to theTerms andPrivacy Policy
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.