Explore

Posts tagged "terraform"

Browse fresh notes, guides, links, and shared pages created with PasteNow.

What is terraform Backend & How used it

Terraform is an open-source infrastructure as code (IaC) tool that allows developers to provision and manage cloud resources in a declarative way. It helps teams to…

Terraform Basics: A Comprehensive Guide

Terraform, an open-source tool developed by HashiCorp, is changing the landscape of infrastructure management. It allows you to define and provide data center infrastructure using a…

Day 71 ??? Terraform Interview Questions

As part of our comprehensive 90-day DevOps Challenge, today marks the 71st day and we have came to end of terraform series. This article has learnings…

Make Terraform as diagram

This adage holds especially true when navigating the intricacies of terraforming infrastructures. Visualization is a cornerstone best practice in Terraform. In a Nutshell: Brainboard stands out as…

An Introduction to Terraform

The official Terraform Getting Started documentation does a good job of introducing the individual elements of Terraform (i.e. resources, input variables, output variables, etc), so in this guide,…

Terraform Basics: Installation and EC2 Instance Provisioning

Terraform is an open-source tool that helps implement IaC. It allows you to write code in a specific language called HashiCorp Configuration Language (HCL) to describe the desired state of your infrastructure. When…

Migrating from Terraform to OpenTofu

Infrastructure as Code (IaC) tools have revolutionized the way we manage and provision cloud resources. Terraform has been a go-to choice for many DevOps and infrastructure…

Introducing The Border0 Terraform Provider

Terraform has become an essential tool for many developers who manage infrastructure and applications running in the cloud. Border0 customers build on cloud providers such as…

Infrastructure as Code with Terraform

What is Terraform? Terraform is an infrastructure as code (IaC) tool that allows you to create, manage, and update infrastructure resources such as virtual machines, networks,…

A reason to stop using the Terraform null_resource

The Terraform null_resource was introduced in 2014 and, according to Hashicorp¹, it is the 3rd most-downloaded provider in the Terraform Registry. This resource is widely used because it…

How to manage Terraform state

This is Part 3 of the Comprehensive Guide to Terraform series. In Part 1, you learned why we picked Terraform as our IAC tool of choice and not Chef,…

Terraform | Beyond IF-ELSE

When it comes to managing infrastructure with Terraform, I’ve discovered that conditionals are an indispensable tool for creating dynamic and flexible configurations. In this post, we…

Awesome Terraform providers

Random Provider The random provider is a provider that generates random values of various types, such as random_id, random_integer, random_string, random_password, etc. These resources can be used to…

Terraform Patterns, Observed

While Terraform is primarily a configuration language that abstracts the APIs of another platform, there are logic expressions available in Terraform allowing developers to introduce inferences…

Deploy Azure Databricks using Terraform

We can now provision Azure and Databricks infrastructure via Terraform as IaC. In this tutorial, I’m going to show you how. Requirements Terraform installed Azure CLI…

Storing Terraform State in Gitlab

Storing Terraform state in Gitlab is not much different then storing in AWS, Lets make changes for storing state in Gitlab Create a project “Terraform” in…

Terraform Resources

In the realm of Terraform, the process of orchestrating cloud resources begins with understanding Terraform resources. In this journey, we embark on three fundamental tasks: Task…