CAMPUX Cloud Bootcamp
CAMPUX · Field Notes · Learning Azure in the open

Field notes.

Short, honest write-ups of one Azure idea at a time — the kind of thing you wish someone had drawn on a whiteboard for you before the interview. Each one teaches the concept properly, cites the Microsoft documentation, and points back to the class that drills it until it sticks.

A hand-drawn line illustration of an open notebook with a pen resting on it, one line on the page underlined in red pen. the one that matters
One idea, drawn once Every note underlines the single sentence you would actually be asked about — then earns it.
Filter
Networking · Private Link Service

Private Link Service: how you offer your own service privately

By Victor Thomson

A private endpoint is how you consume a service privately; Private Link Service is the mirror image — how you publish yours, behind a Standard Load Balancer, so customers connect over a private endpoint instead of a public IP. The pattern behind private SaaS on Azure.

Security · Azure Firewall Premium

Azure Firewall Premium: seeing inside the encrypted traffic

By Victor Thomson

Most traffic is encrypted now, which is great for privacy and terrible for a firewall reading nothing. The Premium tier adds TLS inspection and a signature-based IDPS so it can open the tunnel and match what is really flowing against known attacks.

Networking · Azure DNS

Azure DNS: hosting the phone book, public and private

By Victor Thomson

Every connection starts with one question: what IP is this name? Public zones answer the internet, private zones answer your virtual network, and a surprising amount of "the network is down" turns out to be DNS in a trench coat.

Infrastructure as code · Bicep modules

Bicep modules: stop copy-pasting your infrastructure

By Victor Thomson

The moment your Bicep grows past a toy, one giant file becomes unreadable and you start pasting the same block everywhere. Modules are how infrastructure-as-code learns what every programmer knows: factor it into reusable functions.

Governance · tagging strategy

An Azure tagging strategy that actually gets used

By Victor Thomson

Tags are the difference between a bill that says "$40,000" and one that says which team, project, and environment spent it. But they only work if they exist and stay consistent — which means enforcing them.

Fundamentals · Azure subscriptions

What is an Azure subscription, really?

By Victor Thomson

You pick one in every create dialog and never think about it again. But the subscription is three boundaries wearing one name — management, billing, and scale — and where you draw it shapes everything inside.

Networking · private endpoints

Private endpoints, explained without the fog

By Victor Thomson

A private endpoint drops a real network card, with a private IP from your own subnet, in front of a public Azure service. Here is what that actually means, how it differs from a service endpoint, and the one DNS gotcha that trips everyone.

Fundamentals · resource groups

What is a resource group, really?

By Victor Thomson

Not a folder, not a billing bucket, not a security boundary — although it touches all three. A resource group is a lifecycle boundary, and once that clicks, half of Azure's organizational rules stop feeling arbitrary.