AKASH BHUJBALakashbhujbal.hashnode.dev·Nov 23, 2023Terraform State File Management (Local and Remote)In this article, we are going to cover the details of managing state files in Terraform | Terraform state file Management providing insights into optimal practices for robust infrastructure deployment. What is Terraform State File? The Terraform stat...DiscussTerraform
Md Nur Mohammadmohammadwithdevops.hashnode.dev·Nov 16, 2023Terraform-basic with hands-on workIntroduction Infrastructure as code (IaC) tools allow you to manage infrastructure with configuration files rather than through a graphical user interface. IaC allows you to build, change, and manage your infrastructure in a safe, consistent, and rep...DiscussTerraform
Sarat Motamarrisaratdevopsengg.hashnode.dev·Nov 9, 2023Day 17 | Provisioning an EC2 Instance with TerraformPrerequisites: Install AWS CLI - (https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) Install Terraform - (https://developer.hashicorp.com/terraform/install) Initially, I did not have any instances running on my AWS Ac...DiscussTerraform
Sarat Motamarrisaratdevopsengg.hashnode.dev·Nov 7, 2023Day 16 | Infrastructure as Code | Need for Terraform | Backend ProcessTerraform as "API as Code": Terraform allows you to define and manage your infrastructure as "API as Code." This means you use code to specify your infrastructure resources, and Terraform takes care of provisioning and managing those resources. The N...DiscussTerraform
Mohammed Ashiqiamashiq.hashnode.dev·Nov 7, 2023Terraform State Storage and State LockingTo ensure secure and efficient management of your terraform state,Create an S3 bucket for state storage and DynomoDB for state locking.This setup provides a reliable and scalable solution for managing and version control in your infrastructure deploy...DiscussTerraform
Mamoona Arshad mydevopsblog.hashnode.dev·Nov 4, 2023Mastering Infrastructure as Code with Terraform: A Comprehensive Guide🌟 Introduction of Terraform 🌟 Terraform is an Infrastructure as Code (IaC), open-source, cloud-independent provisioning tool developed by HashiCorp using the Go programming language. It defines, provides, and manages infrastructure resources to com...DiscussTerraform
Abhijit Shenolikarabhijitshenolikar.hashnode.dev·Oct 27, 2023Terraform state locking using DynamoDB tablecreate S3 bucket in AWS console. Create dynamodb table. go to table and click on create table and enter table name of your choice and Partition key as "LockID" and click on create table. Table will be created. status will be "Active" Add AWS...DiscussTerraform
Abhijit Shenolikarabhijitshenolikar.hashnode.dev·Oct 27, 2023Terraform remote state - Initializing S3 as remote backend.The S3 bucket is created. resource "aws_s3_bucket" "s3-tf-bucket" { bucket = "abhijit-tf-test-bucket-for-remote-state" tags = { Name = "My tf bucket" Environment = "test" } } kindly run terraform plan command. Kindly ...DiscussTerraform
Ritesh Kumar Nayakwww.devopswithritesh.in·Oct 14, 2023Cloud State Management by Terraform on AWSCloud state management with Terraform refers to the practice of using Terraform, an open-source infrastructure as code (IaC) tool, to create, update, and maintain the infrastructure resources and configurations in a cloud environment. Terraform enabl...Discuss·1 like·491 readsTerraform
Ayush Ray .ayush06.hashnode.dev·Oct 9, 2023Mastering Terraform: Elevate Your Infrastructure with Remote State ManagementIn today's fast-paced DevOps and Infrastructure as Code (IaC) world, managing infrastructure efficiently is crucial. One of the most powerful tools in this domain is Terraform, an open-source IaC tool from HashiCorp. Terraform allows you to define, p...Discuss·2 likesTerraform