© 2023 Hashnode
#terraform
Terraform is a tool that allows us to automate and manage infrastructure, platforms, and services that run on the platform. It is open-source and was written in Declarative Language. Declarative means, you don’t have to define the steps to …
What is IaC? Infrastructure as code (IAC) is the process of managing and provisioning computer data centres through machine-readable definition files, rather than physical hardware configuration or in…
What is Amazon EKS? Amazon EKS is a fully managed container orchestration service. EKS allows you to quickly deploy a production-ready Kubernetes cluster in AWS, and deploy and manage containerized ap…
I tried out Terraform for the first time in one of my previous posts and since nothing beats learning by continuously doing, I decided to convert a CloudFormation script I wrote to "deploy infrastruct…
Project Description: Hello friends, today I am going to share a CI/CD project for a Node.JS Application using Jenkins Declarative Pipeline. It will fetch the code from the source code repo GitHub and …
Today, I asked ChatGPT a few questions so I might understand whether it would be advantageous to use Crossplane with Terraform. Here's the exchange... Me Please compare and contrast the use of Terraform and Crossplane when used to create an…
Introduction Creating an Amazon Elastic Kubernetes Service (EKS) cluster can be a complex task, but using Terraform simplifies the process and allows for easy management and scaling of the cluster. In…
When deploying infrastructures with Terraform, there is a vital part of the process that has to do with Providers. Providers are plugins that allow you to interact with different Cloud Provider Servic…
In this article, we'll take a look at what Infrastructure as code [IaC] is and how Terraform is an Infrastructure as code tool for building infrastructure in the cloud. What is Infrastructure as Code?…
Introduction: In this article, you'll see what is idempotency and why we need an idempotent tool to implement infrastructure as code(IaC). What is Terraform: Terraform is an infrastructure as a code (…