Rajat Chauhanchauhanrajatwork.hashnode.dev路Aug 27, 2024Exploring Terraform Providers: Configuration, Authentication, and Practical ApplicationIntroduction As we dive into Day 6 of the TerraWeek challenge, our focus shifts to the heart of Terraform's infrastructure-as-code capabilities: providers. Terraform providers serve as the bridge between Terraform and the cloud platforms or infrastru...TerraformTerraform
Rajat Chauhanchauhanrajatwork.hashnode.dev路Aug 22, 2024Mastering Terraform with AWS EC2On Day 3 of TerraWeek, we delve into the practical use of Terraform to manage infrastructure as code. Today鈥檚 focus is on creating and managing resources like AWS EC2 instances, Azure storage accounts, or Google Compute Engine resources using Terrafo...Terraform
Rajat Chauhanchauhanrajatwork.hashnode.dev路Aug 21, 2024Understanding HCL Syntax in Terraform: A Comprehensive GuideTerraform is a powerful tool for managing your infrastructure using code. This blog will provide a deep dive into HashiCorp Configuration Language (HCL), the language used to define infrastructure resources in Terraform. We will explore HCL blocks, p...1 like路27 readsTerraformTerraform
Deepak Kumardeepakgupta0.hashnode.dev路Aug 19, 2024EC2 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...#90daysofdevops
Deepak Kumardeepakgupta0.hashnode.dev路Aug 18, 2024Terraform 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...#90daysofdevops
Pratik R. Mandgepratikm363.hashnode.dev路Apr 12, 2024馃摍Mastering Advanced Terraform Techniques: Workspaces, Remote Execution, Collaboration, and Best Practices馃搶Workspaces, Remote Execution, and Collaboration 1. Workspaces: Workspaces in Terraform allow you to manage multiple environments (such as development, staging, and production) with the same configuration. Each workspace has its state file, allowi...10 likes路28 readsTerraform - Infrastructure as a CodeTerraform
Pratik R. Mandgepratikm363.hashnode.dev路Apr 11, 2024鉁★笌Demystifying Terraform Providers: A Comprehensive Guide to Cloud Resource Management馃敽Learn and Compare Terraform Providers What is a Terraform Provider? A Terraform provider is responsible for understanding API interactions and exposing resources for a specific infrastructure platform. It translates Terraform configuration files in...10 likesTerraform - Infrastructure as a CodeTerraform
Pratik R. Mandgepratikm363.hashnode.dev路Mar 28, 2024馃ЭManaging Infrastructure with Terraform: A Comprehensive Guide馃彿Terraform Configuration File: Create a Terraform configuration file to define a resource of AWS EC2 instance. terraform { required_providers { aws = { source = "hashicorp/aws" version = "5.42.0" } } } provider "aws" { regio...11 likes路52 readsTerraform - Infrastructure as a CodeTerraform
SWATHI PUNREDDYswathireddy.hashnode.dev路Mar 24, 2024Mastering Terraform State Management 馃尡Welcome back to another exciting day of TerraWeek! Today, we're diving deep into the critical aspect of Terraform: state management. Terraform state is the backbone of infrastructure provisioning and management, ensuring smooth operations and accurat...36 readsTerraweek
Aakashcodewordsky.hashnode.dev路Mar 18, 2024Day 1 - Terraform WeekIntroduction Welcome to TerraWeek Day 1! In this blog series, we will dive into the world of Terraform and explore how it revolutionizes infrastructure management through code. Whether you're a seasoned DevOps engineer or just starting your journey i...39 readsTerraWeekTerraweekchallenge