How to use terraform taint for a nested terraform module?

Read more »

Its all about HashiCorp Certified Terraform Associate Exam!!!

The Terraform Associate certification is for operations, IT, or devops professionals who know the basic concepts and skills associated with open source HashiCorp Terraform. Qualified candidates may not have used…

Read more »

Terraform Modules Tutorials and Complete Guide

Terraform Modules explained!!!‘ How to use one module’s variable in another module in terraform?

Read more »

Example of Terraform Code for Lab and Demo

Example Code of Terraform AWS VPC Terraform Hello world Program Terraform example program for aws_security_group, aws_instance and provisioner Working with Terraform AWS provider, resources aws_key_pair

Read more »

Terraform Errors and Solutions Database

Terraform Error: Key is not in valid OpenSSH public key format Terraform Error: Invalid reference Terraform Error: Invalid variable name Terraform Error: Failed to read ssh private key: no key…

Read more »

Terraform Install Ansible and Run Playbook Example

Read more »

Terraform Modules explained!!!

A module is a container for multiple resources that are used together. Modules can be used to create lightweight abstractions, so that you can describe your infrastructure in terms of…

Read more »

Terraform Implicit and Explicit Dependencies

Read more »

Terraform Output Variable Tutorials with Example

Terraform will store hundreds or even thousands of attribute values for all the defined resources in our infrastructure in state file. An outputed attributes can not only be used for…

Read more »

Terraform Tutorials: Variables – Data Type – Boolean

The last of the available variable types is boolean. They give the option to employ simple true or false values. For example, you might wish to have a variable that…

Read more »

Terraform Tutorials: Variables – Data Type – Map

In this example, the instance_tags variable is defined with a type of map(string), and it is given a default value of { Name = “my-instance” }. The AWS provider is…

Read more »

Example of terraform terraform.tfvars

Read more »

Terraform variable using TF_VAR environment variables example

How to set Terraform Variables in Windows? Terraform will read environment variables in the form of TF_VAR_name to find the value for a variable. For example, the TF_VAR_region variable can…

Read more »

Terraform variable using anyotherfile.tfvars example

Read more »

Terraform variable using command line example

Read more »

Terraform Tutorials: Variables – Data Type – String

In this example, the instance_name variable is defined with a type of string, and it is given a default value of “my-instance”. The AWS provider is then configured to use…

Read more »

Terraform Example Code for Hello world Program

Read more »

Terraform Error: Key is not in valid OpenSSH public key format

Code Error Solutions:

Read more »

Terraform state explained!!!

By – christophchamp Terraform keeps the remote state of the infrastructure It stores it in a file called terraform.tfstate There is also a backup of the previous state in terraform.tfstate.backup When you execute terraform apply, a new terraform.tfstate and…

Read more »

Terraform Project – Assignment – Exercise – Lab#2: Modules

How to submit Assignment? Please submit assignment @https://www.debug.school/ and POST url share in the comments of this post. Project 1 – Create a terraform Module in which you create a…

Read more »