DKDeepak Kumarindeepakgupta0.hashnode.dev·Aug 6, 2025 · 2 min readTerraform Output VariablesWhen building infrastructure with Terraform, you often need to expose certain values—like IP addresses, resource IDs, or connection strings—after deployment. That’s where output variables come in. Think of them as Terraform way of saying, “Here’s wha...00
DKDeepak Kumarindeepakgupta0.hashnode.dev·Aug 6, 2025 · 3 min readTerraform Input VariablesTerraform supports several types of variables, which allow you to customize and manage your infrastructure configurations more effectively. Below are the types of variables. Terraform Input Variables It allow you to customize the behavior of your Ter...00
DKDeepak Kumarindeepakgupta0.hashnode.dev·Sep 8, 2024 · 7 min readTerraform Resources Syntax, Behavior & Meta ArgumentTerraform Resource Syntax Terraform Resource Behavior Resource Meta-Argument count Resource Meta-Argument depends_on Resource Meta-Argument for_each Resource Meta-Argument lifecycle Terraform Resource Syntax Behavior We will review about Terra...00
DKDeepak Kumarindeepakgupta0.hashnode.dev·Aug 19, 2024 · 1 min readEC2 create and login with ssh-keyStep 1:- Create SSH-KEY ssh-keygen Step 2:- Create terraform.tf file and add provider details. terraform { required_providers { aws = { source = "hashicorp/aws" version = "5.63.0" } } } Step 3:- Create provider.tf file and...00
DKDeepak Kumarindeepakgupta0.hashnode.dev·Aug 18, 2024 · 5 min readTerraform What, Why & How ?Terraform, an infrastructure as code tool by HashiCorp, enables you to define and manage cloud and on-premises infrastructure through human-readable, declarative configuration files. It supports multi-cloud environments, ensures consistency, allows v...00