day 11 Advance Git & GitHub for DevOps Engineers: Part-21. Git Stash: Git Stash is a command that allows you to temporarily save changes that are not ready to be committed yet, effectively allowing you to switch to a different branch or work on a different task without committing unfinished work. This is...Jun 28, 2023·4 min read
TerraWeek Day 3Task 1: Create a Terraform configuration file to define a resource of the AWS EC2 instance Here is a Terraform configuration file to define a resource of AWS EC2 instance: # Declare the AWS provider provider "aws" { region = "us-west-2" } # Def...Jun 7, 2023·4 min read
TerraWeek Day-2Task 1: Familiarize yourself with HCL syntax used in Terraform 1. what is HCL blocks, parameters, and arguments The HCL syntax used in Terraform is a declarative language designed to define infrastructure resources in a readable and manageable way. ...Jun 7, 2023·8 min read
TerraWeek Day:1Introduction to Terraform and Terraform Basics 1.What is Terraform and how can it help you manage infrastructure as code? What is Terraform ? Terraform is an open-source infrastructure as a code software tool created by HashiCorp. It enables you t...Jun 5, 2023·6 min read
Advance Git & GitHub for DevOps Engineers (day-10-task)1.Git Branching Git branching is a powerful feature that enables developers to work on isolated instances of source code in parallel. It allows teams to experiment with changes and new features without affecting the main codebase, reducing risk and i...Jun 1, 2023·4 min read
Deep Dive in Git & GitHub for DevOps Engineers. (Day-9-Task)1.What is Git and why is it important? Git is a distributed version control system that is widely used in software development to manage source code and track changes made to it over time. Basically, Git allows developers to collaborate on software p...May 17, 2023·5 min read