Terraform

Terraform Terraform is an open-source Infrastructure as Code (IaC) tool developed by HashiCorp. It allows you to define and manage your infrastructure resources—such as virtual machines, networks, and databases—in human-readable configuration files. Instead of manually provisioning resources through a cloud provider’s web console, you can use Terraform to automate the process, making it repeatable and less prone to error. Basic commands The basics of Terraform revolve around a few core concepts and commands that form the standard workflow. You’ll use these to initialize a project, plan changes, and apply them. ...

August 29, 2025 · 5 min · 895 words · Aum Pauskar

Github Actions

Github actions What is github actions? Github actions is a tool baked inside github that facilitates ci/cd operations on github. It can provide all the operations including building and hosting webpages, providing important pust notifications when an important release is made and other updates. Getting started with the basics Github actions GitHub Actions lets you define workflows using YAML files, which are stored in your repository under the .github/workflows/ directory. A workflow consists of one or more jobs, and each job contains steps (commands or scripts) that run on a virtual machine (called a runner). ...

February 25, 2025 · 4 min · 760 words · Me