Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Terraform Cookbook

You're reading from   Terraform Cookbook Efficiently define, launch, and manage Infrastructure as Code across various cloud platforms

Arrow left icon
Product type Paperback
Published in Oct 2020
Publisher Packt
ISBN-13 9781800207554
Length 366 pages
Edition 1st Edition
Concepts
Arrow right icon
Author (1):
Arrow left icon
Mikael Krief Mikael Krief
Author Profile Icon Mikael Krief
Mikael Krief
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. Setting Up the Terraform Environment 2. Writing Terraform Configuration FREE CHAPTER 3. Building Dynamic Environments with Terraform 4. Using the Terraform CLI 5. Sharing Terraform Configuration with Modules 6. Provisioning Azure Infrastructure with Terraform 7. Deep Diving into Terraform 8. Using Terraform Cloud to Improve Collaboration 9. Other Books You May Enjoy

Validating the code syntax

When writing a Terraform configuration, it is important to be able to validate the syntax of the code we are writing before executing it, or even before archiving it in a Git repository.

We will see in this recipe how, by using the Terraform client tool, we can check the syntax of a Terraform configuration.

Getting ready

For this recipe, we will start with the following Terraform configuration, which is written in a main.tf file:

What we notice in the preceding code is that the declaration of the environment variable is missing.

How to do it…

To validate our Terraform configuration syntax, perform the following steps:

  1. To start, initialize the Terraform context by running the following command:
terraform init
  1. Then, validate the code by executing the validate command:
terraform validate

How it works…

In step 1, we initialize the Terraform context by executing the terraform init command.

Then, we perform a check of the code validity by executing...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £16.99/month. Cancel anytime