PinnedIn the Midst of Chaos: A ReflectionI have always been intrigued by how walls appear to an individual. Do they remember the same thoughts, reflecting the aroma of different colors shining through the rays of the sun passing from the open window and striking their surface before reachin...May 26, 2024·3 min read
Embracing DevOps: Accelerating Innovation through Automation, Scaling, and InfrastructureJul 31, 2023·3 min read
Terra Week Challenge Day 7What are terraform workspace, remote execution, and collaboration? Terraform Workspace: A workspace in Terraform is a named container that contains a unique collection of infrastructure resources that Terraform manages. It makes it simpler to handle ...Jun 11, 2023·6 min read
Terra Week Challenge Day 6What are the Providers in Terraform A provider is a plugin that lets Terraform manage an external API. In your CDK for Terraform (CDKTF) application, you use your preferred programming language to define the resources you want Terraform to manage on ...Jun 11, 2023·10 min read
Terra Week Challenge Day 5What are the Modules in Terraform Modules are reusable infrastructure configuration components in Terraform that can be used to group and organize collections of resources. In your Terraform codebase, they offer a means of producing reusable, shareab...Jun 10, 2023·9 min read
Terra Week Challenge Day 4Terraform State: With the help of the infrastructure as code tool Terraform, you can declaratively define and manage your infrastructure. Terraform stores a state file that lists the resources you have provisioned as you work with it. The mapping bet...Jun 9, 2023·7 min read
Terra Week Challenge Day 3Create a Terraform configuration file to define a resource of AWS EC2 instance, Azure storage account, Google Compute Engine, etc. (anyone) # Define provider for AWS provider "aws" { region = "us-west-2" } # Define resource for EC2 instance resour...Jun 7, 2023·7 min read
Terra Week Challenge Day 2Hashi Corp Language The native syntax of the Terraform language, which is a rich language designed to be relatively easy for humans to read and write. This low-level syntax of the Terraform language is defined in terms of a syntax called HCL, which i...Jun 6, 2023·6 min read