Optimizing GitHub Workflows: How to Auto cleanup your cache after use

Intro In the CI/CD space, every second counts like in an F1 race. That’s where GitHub Actions cache comes in. Caching is like a pit stop for your code – it saves precious time by providing pre-loaded resources to speed up pipeline execution by storing and reusing previously downloaded dependencies. However, cache use especially in …

Deploy multilevel OCI sub-compartments with terraform (using local module)

  Intro In my previous blogpost, we explored the challenges with relying on terraform registry modules for code sanity checks. Additionally, we reviewed OCI iam-compartment module and I shared my revised version in my Github. Today, we’ll demonstrate how to deploy multi-level OCI compartments using my local module (iam-compartment), which you can easily clone from my …

What’s OIDC and why should you use it asap in your GitHub pipeline (keyless)

Table of contents Popular Authentications to Cloud (Why is it wrong?) OAuth Origins OAuth 2.0 terminology OAuth 2.0 workflow What is OIDC? OIDC .vs OAuth 2.0 OIDC Authentication flow OIDC in GitHub Actions MultiCloud keyless access examples (Azure/ AWS/ GCP) Hackers Paradise !                        — “ 10 million credentials from GitHub were accessible in 2022 …

GitHub Actions Cheat Sheet: What I learned from GitHub CI in 2 weeks

Intro This year I set a goal to explore and learn most popular CI solutions like GitLab, including all cloud native ones. My first pick had to be GitHub Actions, which I heard a lot of but never used. So I decided to plunge into it to see how rich the solution was. Since I …

How to Deploy Multi-Region Resources with Terraform: example(OCI Public IPs)

Intro As with any software, terraform also has hidden gems waiting to be discovered, even after you’ve obtained your associate certification. Some features aren’t always known until you need them, which is why we still a a lot to learn from the product. Today is one of those days!  In this post, I will show …

Devops: Demystifying CI vs. CD and the “Delivery-Deployment” Differences

Intro In the space of software delivery, CI/CD has emerged as a game-changing framework that accelerates development life cycle. While most users consider practice a handy shortcut to knowledge, diving headfirst into the CI/CD universe without a solid grasp of the fundamental bases is like trying to learn salsa moves without understanding tempo or foot …

My corrected OCI-IAM-compartment Terraform Module

  Intro So, turns out I’ve been living in the Stone Age of Terraform. I thought keeping my code lean and mean was the way to go, but apparently, the cool kids are all about terraform modules. They’re all like, “Modularity! Reusability! It’s the secret sauce of Infrastructure as Code!”. Up until now, with my …

Terraform live cost estimate using infracost free plugin

Intro The cloud offers unlimited scalability at lower costs with the available resources. Companies enable their engineering teams to launch infrastructure as and when needed. However, since costs aren’t shown to engineers before Cloud resources are deployed, the real cost implications are unknown. That causes higher than expected costs and ballooning budgets over time, which …

Hashicorp Terraform Associate certification takeaways

Intro The thing we usually forget when completing a certification is to save a mental image of the topics that were exciting to learn or the concepts that we had no clue about right before starting the preparation. This is what practitioners should focus on after every major Cloud cert exam, as it provides an …

Terraform for dummies part 6: Deploy Oracle DB System 21c using terraform

Intro What’s the point of moving a database to the Cloud if we can’t automatically deploy it. After blogging about web compute provisioning on AWS,OCI, Azure, & GCP using terraform. The least I could do as a (future-ex) DBA is to terraform database provisioning in Oracle Cloud. On top of that, I also wanted to …