Back
Azure infrastructure Terraform layered architecture model showing network, security, traffic, compute and data access
29Mar, 2026

Azure Infrastructure with Terraform/OpenTofu: From Network Design to Scalable Compute

Azure infrastructure Terraform is often presented as a set of individual resources — but real platforms are built as connected architectural layers. When engineers start working with Azure and Terraform, most examples focus on individual resources. A Virtual Network here. A VM there. Maybe a Load Balancer on top. But …

Azure NAT Gateway Terraform – private subnet outbound architecture
13Feb, 2026

Azure NAT Gateway with Terraform: Designing Outbound Access for Private Subnets

Private workloads still need the internet.Not for exposure — but for controlled, auditable outbound traffic. In Azure, outbound connectivity is often treated as an afterthought — yet Azure NAT Gateway Terraform provides a clean, architecture-grade way to design outbound identity for private subnets. In production platforms, the real architectural question …

Azure NSG design patterns – NIC-level security boundary architecture
06Feb, 2026

Azure NSG is not a firewall: Designing security boundaries with Terraform (NIC vs Subnet)

Azure NSG design patterns are not about opening ports — they are about defining security boundaries in your network architecture. 🔵 Azure NSG vs Firewall — What’s the Difference? (Terraform Example) module “compute” { source = “github.com/foggykitchen/terraform-az-fk-compute” attach_nsg_to_nic = true nsg_id = module.nsg.id } module “private_subnet_nsg” { source = “github.com/foggykitchen/terraform-az-fk-nsg” …

01Feb, 2026

Azure Load Balancer as a Traffic Contract — A Clean Terraform Module Baseline

Using a Terraform Azure Load Balancer Module as a Clean Baseline This article shows how to use a Terraform Azure Load Balancer module to define an explicit traffic contract between the public edge and independently managed backend virtual machines. Azure Load Balancer is often introduced too late in the infrastructure …

OCI Azure Interconnect Terraform
17Sep, 2025

Building an OCI–Azure Interconnect with Terraform (Part 1): Azure Virtual Network Gateway and ExpressRoute Circuit

OCI Azure Interconnect Terraform is the foundation for securely linking Microsoft Azure with Oracle Cloud Infrastructure. In this article, we start building an OCI Azure Interconnect with Terraform. The focus of Part 1 is on the Azure side, where we deploy the Virtual Network Gateway and ExpressRoute Circuit. These resources …