RRagaviineasydevops.hashnode.dev·Jul 17, 2024 · 4 min readTerraform - Multi Resource FileUsing multiple files in Terraform helps keep things organized and easy to understand. Each file can focus on a specific part of your setup, making it simpler to manage and update. It also allows you to reuse parts in different projects, work better w...00
RRagaviineasydevops.hashnode.dev·Jul 16, 2024 · 4 min readTerraform - Backend (AWS)Terraform maintains the state of the infrastructure locally on the user's machine. However, this approach becomes problematic in a team environment where different team members may end up with different states, leading to inconsistencies. To solve th...00
RRagaviineasydevops.hashnode.dev·Jul 16, 2024 · 6 min readTerraform - OutputWhen we execute terraform apply, it returns a lot of output and that information is stored in the Terraform state file. We can access information from that file directly. Terraform output is a feature in Terraform that allows you to extract and displ...00
RRagaviineasydevops.hashnode.dev·Jul 14, 2024 · 7 min readTerraform - ProvisionersWe all have played with the toys in Kinder Joy chocolate, right? So, remember this for terraform provisioners, Kinder Joy includes a toy and an instruction note that helps to set up the pieces of the toy. In the same way, Terraform provisioners act l...00
RRagaviineasydevops.hashnode.dev·Jul 13, 2024 · 4 min readTerraform VariablesA Terraform variable is a way to define or allow you to set and manage values that can change, making your infrastructure code more flexible and reusable. They help customize and scale your deployments easily by allowing you to define values like sec...00