<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Victor</title>
    <description>The latest articles on DEV Community by Victor (@kloudcaptain).</description>
    <link>https://dev.to/kloudcaptain</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4092436%2Febd322d6-c4aa-4b82-94db-226981a81329.png</url>
      <title>DEV Community: Victor</title>
      <link>https://dev.to/kloudcaptain</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kloudcaptain"/>
    <language>en</language>
    <item>
      <title>Azure ExpressRoute vs VPN Gateway: the honest comparison</title>
      <dc:creator>Victor</dc:creator>
      <pubDate>Thu, 27 Aug 2026 00:24:06 +0000</pubDate>
      <link>https://dev.to/kloudcaptain/azure-expressroute-vs-vpn-gateway-the-honest-comparison-2g9o</link>
      <guid>https://dev.to/kloudcaptain/azure-expressroute-vs-vpn-gateway-the-honest-comparison-2g9o</guid>
      <description>&lt;p&gt;Your datacenter needs to talk to Azure. You can send that traffic through an encrypted tunnel over the public internet, or over a private circuit that never touches it. That single choice — shared road or private rail — decides cost, speed, and reliability.&lt;/p&gt;

&lt;p&gt;Almost every organization moving to Azure keeps &lt;em&gt;something&lt;/em&gt; on-premises, and those two worlds have to connect privately. Azure gives you two hybrid-connectivity options, and they take opposite routes to the same destination: &lt;strong&gt;VPN Gateway&lt;/strong&gt; and &lt;strong&gt;ExpressRoute&lt;/strong&gt;. Understanding them is really understanding one question — does your traffic ride the public internet, protected by encryption, or a dedicated line that bypasses it entirely?&lt;/p&gt;

&lt;h2&gt;
  
  
  VPN Gateway: an encrypted tunnel over the internet
&lt;/h2&gt;

&lt;p&gt;Microsoft's description is exact: Azure VPN Gateway &lt;em&gt;"can be used to send encrypted traffic between an Azure virtual network and on-premises locations over the public Internet."&lt;/em&gt; Your traffic still travels the ordinary internet, but inside an IPsec/IKE tunnel, so it is private even though the road is shared. It comes in a few shapes: &lt;strong&gt;site-to-site&lt;/strong&gt; (your datacenter's VPN device to Azure), &lt;strong&gt;point-to-site&lt;/strong&gt; (an individual remote worker to the VNet), and &lt;strong&gt;VNet-to-VNet&lt;/strong&gt;. It is quick to stand up, needs no third party, and is inexpensive — the pragmatic default for dev/test and small-to-medium production links.&lt;/p&gt;

&lt;h2&gt;
  
  
  ExpressRoute: a private, dedicated circuit
&lt;/h2&gt;

&lt;p&gt;ExpressRoute takes the other road entirely. It &lt;em&gt;"lets you extend your on-premises networks into the Microsoft cloud over a private connection with the help of a connectivity provider."&lt;/em&gt; The defining fact: because ExpressRoute connections &lt;em&gt;do not go over the public internet&lt;/em&gt;, they offer &lt;em&gt;"more reliability, faster speeds, consistent latencies, and higher security than typical connections over the internet."&lt;/em&gt; You are not tunnelling through shared roads; you have a private rail line into Microsoft's network, arranged through a connectivity provider. That extra reliability and consistency costs more and takes longer to provision — but for a bank, a hospital, or a latency-sensitive enterprise workload, it is the answer.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;VPN Gateway&lt;/th&gt;
&lt;th&gt;ExpressRoute&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Path&lt;/td&gt;
&lt;td&gt;Public internet (encrypted tunnel)&lt;/td&gt;
&lt;td&gt;Private dedicated circuit&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reliability &amp;amp; latency&lt;/td&gt;
&lt;td&gt;Best-effort internet&lt;/td&gt;
&lt;td&gt;More reliable, consistent latency&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup&lt;/td&gt;
&lt;td&gt;Fast, self-service&lt;/td&gt;
&lt;td&gt;Via a connectivity provider&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;Lower&lt;/td&gt;
&lt;td&gt;Higher&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best for&lt;/td&gt;
&lt;td&gt;Dev/test, small-medium prod, remote users&lt;/td&gt;
&lt;td&gt;Enterprise, regulated, latency-sensitive&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;p&gt;A VPN tunnels privately through the public road. ExpressRoute gives you a private road of your own. Same destination, very different guarantees.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;They are not mutually exclusive.&lt;/strong&gt; The grown-up pattern often uses &lt;em&gt;both&lt;/em&gt;: ExpressRoute as the primary private connection, with a &lt;strong&gt;site-to-site VPN as a secure failover path&lt;/strong&gt; if the circuit goes down. Microsoft supports this coexistence directly. So the question is not always "which one" — sometimes it is "ExpressRoute with a VPN safety net."&lt;/p&gt;

&lt;h2&gt;
  
  
  How to choose
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Getting started, dev/test, or a small-to-medium workload where good-enough internet connectivity is fine?&lt;/strong&gt; VPN Gateway. Fast, cheap, no provider to involve.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Remote individual users needing into the VNet?&lt;/strong&gt; A point-to-site VPN.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enterprise scale, strict reliability or latency needs, regulated industry, or heavy sustained data transfer?&lt;/strong&gt; ExpressRoute — the private, consistent circuit is worth the cost and the lead time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mission-critical link that cannot go dark?&lt;/strong&gt; ExpressRoute primary, VPN failover.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The mistake is treating them as "cheap one vs expensive one." They are "shared road with a lock" versus "your own private line," and the right pick follows from how much reliability, consistency, and privacy the workload genuinely demands. Say "a site-to-site VPN for now, and ExpressRoute when we need consistent latency and an SLA on the connection — with the VPN kept as failover" and you are talking hybrid networking like an architect.&lt;/p&gt;

&lt;h2&gt;
  
  
  Questions people also ask
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Is ExpressRoute more secure than VPN Gateway?
&lt;/h3&gt;

&lt;p&gt;ExpressRoute keeps traffic off the public internet, which removes a whole class of exposure a VPN carries by design. But an ExpressRoute circuit is not encrypted by default. For data that must be encrypted in transit, add MACsec on the circuit or run an IPsec VPN over ExpressRoute. VPN Gateway is encrypted from the start, just over a shared path.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can you use ExpressRoute and VPN Gateway together?
&lt;/h3&gt;

&lt;p&gt;Yes, and Azure supports the coexistence directly. The common pattern runs ExpressRoute as the primary private circuit and a site-to-site VPN as the failover path, so if the circuit drops, traffic falls back to an encrypted tunnel over the internet instead of going dark.&lt;/p&gt;

&lt;h3&gt;
  
  
  How much does ExpressRoute cost compared to a VPN Gateway?
&lt;/h3&gt;

&lt;p&gt;ExpressRoute costs more. Its tiers run from a metered Local option up to Standard around $300 a month for 1 Gbps, plus a Premium add-on, before you add the connectivity provider's own charges. A VPN Gateway has a much lower flat cost since it rides the internet you already pay for and needs no third-party provider.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is the difference between ExpressRoute and a site-to-site VPN?
&lt;/h3&gt;

&lt;p&gt;A site-to-site VPN connects your on-premises network to Azure through an encrypted tunnel over the public internet. ExpressRoute connects the same two networks through a private circuit arranged with a connectivity provider, bypassing the internet entirely for more consistent latency and reliability.&lt;/p&gt;

&lt;h3&gt;
  
  
  Which is faster, ExpressRoute or VPN Gateway?
&lt;/h3&gt;

&lt;p&gt;ExpressRoute is faster and more consistent. Because it does not share the public internet's congestion and routing variability, it delivers predictable latency and higher throughput. A VPN Gateway's speed depends on internet conditions between your site and Azure, which vary and can degrade under load.&lt;/p&gt;

&lt;h2&gt;
  
  
  Further reading — the Microsoft docs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/expressroute/expressroute-introduction" rel="noopener noreferrer"&gt;Azure ExpressRoute — overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-about-vpngateways" rel="noopener noreferrer"&gt;About Azure VPN Gateway&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/networking/hybrid-connectivity/hybrid-connectivity" rel="noopener noreferrer"&gt;Hybrid connectivity options&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the comparison. &lt;a href="https://www.campuxlearn.com/chapter-15-hybrid-dns" rel="noopener noreferrer"&gt;Class 15 — Hybrid &amp;amp; DNS&lt;/a&gt; takes you hands-on: reason about connecting on-premises to Azure, wire consistent name resolution across the link, and see where a private circuit beats a tunnel.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This article was originally published on &lt;a href="https://www.campuxlearn.com/blog-expressroute-vs-vpn-gateway" rel="noopener noreferrer"&gt;CAMPUX&lt;/a&gt;, a free Azure cloud-engineering bootcamp.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>azure</category>
      <category>cloud</category>
      <category>networking</category>
      <category>devops</category>
    </item>
    <item>
      <title>Azure Front Door vs Traffic Manager: which to use, and when</title>
      <dc:creator>Victor</dc:creator>
      <pubDate>Tue, 25 Aug 2026 15:46:12 +0000</pubDate>
      <link>https://dev.to/kloudcaptain/azure-front-door-vs-traffic-manager-which-to-use-and-when-48ll</link>
      <guid>https://dev.to/kloudcaptain/azure-front-door-vs-traffic-manager-which-to-use-and-when-48ll</guid>
      <description>&lt;p&gt;Both promise to route users to the closest healthy copy of your app anywhere on earth. But one stands in the traffic path and does real work to every request, and the other just answers a DNS question and vanishes. Confuse them and you will either pay for power you do not use or reach for caching that a DNS router cannot give you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Azure Traffic Manager is DNS-based global routing: it hands clients an endpoint address for any protocol, then steps out of the path, so its failover is only as fast as DNS TTL. Azure Front Door is an application-layer (L7) global entry point with caching, a WAF, and instant failover for HTTP/S.&lt;/strong&gt; When an app goes global, you need something in front that sends each user to a nearby, healthy backend. Azure offers two very different answers — &lt;strong&gt;Azure Front Door&lt;/strong&gt; and &lt;strong&gt;Azure Traffic Manager&lt;/strong&gt; — and the single fact that explains everything else is &lt;em&gt;where each one sits&lt;/em&gt;. Front Door sits &lt;em&gt;in the path&lt;/em&gt; of every request. Traffic Manager sits &lt;em&gt;outside&lt;/em&gt; the path, in DNS. Get that distinction and the rest of the comparison writes itself.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Front Door&lt;/th&gt;
&lt;th&gt;Traffic Manager&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Layer&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Layer 7 (HTTP/HTTPS)&lt;/td&gt;
&lt;td&gt;DNS (Layer 4, any protocol)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Sits&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;In the request path, at the edge&lt;/td&gt;
&lt;td&gt;Outside the path — answers DNS, then gone&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Caching / TLS offload&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;WAF&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Failover speed&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Instant (in-path)&lt;/td&gt;
&lt;td&gt;Waits for DNS TTL to expire&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Best for&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Global web apps &amp;amp; APIs wanting edge caching + WAF&lt;/td&gt;
&lt;td&gt;Routing any endpoint (VMs, non-Azure, whole regions) by DNS&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Two more names round out the family, and the split is by scope and layer: &lt;strong&gt;Load Balancer&lt;/strong&gt; is L4 regional (spreads raw TCP/UDP across VMs in one region), &lt;strong&gt;Application Gateway&lt;/strong&gt; is L7 regional (HTTP routing and WAF inside one region), &lt;strong&gt;Traffic Manager&lt;/strong&gt; is DNS global (picks a region), and &lt;strong&gt;Front Door&lt;/strong&gt; is L7 global (picks a region and does edge work in the path). The two on this page are the global tier; the other two work inside a region. This is exactly the stack drilled in &lt;a href="https://www.campuxlearn.com/chapter-13-load-balancing-traffic" rel="noopener noreferrer"&gt;Class 13 — Load Balancing &amp;amp; Traffic&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Front Door: a layer-7 front line at the edge
&lt;/h2&gt;

&lt;p&gt;Microsoft calls Azure Front Door &lt;em&gt;"an advanced content delivery network (CDN) for the cloud"&lt;/em&gt; that gives &lt;em&gt;"fast, reliable, and secure access to your applications' static and dynamic web content globally."&lt;/em&gt; It is a &lt;strong&gt;layer-7&lt;/strong&gt; service, which means it understands HTTP and terminates each connection at one of Microsoft's edge locations close to the user. Because it sits in the traffic path, it can &lt;em&gt;do things&lt;/em&gt; to the request: cache static content at the edge, offload TLS, accelerate dynamic requests over Microsoft's private backbone, route by URL path, and — the big one — sit a &lt;strong&gt;Web Application Firewall&lt;/strong&gt; in front of your app to inspect and block malicious traffic. Front Door is not just a router; it is a working front line.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Figure&lt;/strong&gt; — Front Door sits in the request path at Microsoft's edge and does real work to every request — caching, TLS, a WAF, fast failover. Traffic Manager only answers a DNS query with an address; the client then connects straight to the backend and Traffic Manager is gone. In-path edge work versus DNS-level routing.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Traffic Manager: a router that lives in DNS
&lt;/h2&gt;

&lt;p&gt;Traffic Manager is a &lt;strong&gt;DNS-based&lt;/strong&gt; traffic load balancer. When a client resolves your name, Traffic Manager answers the DNS query with the address of the endpoint it has chosen, whether by performance, priority, geography, or weighted split, and then it is &lt;em&gt;done&lt;/em&gt;. The client connects &lt;em&gt;directly&lt;/em&gt; to that endpoint; Traffic Manager is never in the data path. That has two consequences worth internalizing. First, it works for &lt;em&gt;anything&lt;/em&gt; with a DNS name (VMs, non-Azure endpoints, whole regions), not just HTTP. Second, because it only ever hands out DNS answers, it cannot cache, cannot inspect requests, and cannot offer a WAF. It is a brilliant traffic director that never touches the cargo.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Front Door stands in the road and works on every car that passes. Traffic Manager just points at the right road and lets the cars drive themselves.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The consequences you feel in production
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Failover speed.&lt;/strong&gt; Front Door reacts fast because it is live in the path — a dead backend is skipped on the next request. Traffic Manager relies on DNS, and DNS answers get cached by resolvers for the record's TTL, so failover is only as quick as clients re-resolving the name. For sub-minute failover of a web app, that difference matters.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What it can protect.&lt;/strong&gt; Only Front Door can cache content, terminate TLS at the edge, and put a WAF in front of your app. Traffic Manager, living in DNS, offers none of that.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What it can route.&lt;/strong&gt; Traffic Manager routes any endpoint reachable by DNS, including non-HTTP and on-premises. Front Door is for HTTP/HTTPS web applications and APIs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;A quick way to pick.&lt;/strong&gt; Ask two questions. &lt;strong&gt;Is it a web app or API (HTTP/HTTPS)?&lt;/strong&gt; If no — you are routing raw TCP endpoints, non-Azure services, or whole regions by DNS — Traffic Manager. If yes, ask: &lt;strong&gt;do you want edge caching, TLS offload, or a WAF, and fast in-path failover?&lt;/strong&gt; If yes, Front Door. If you genuinely only need "send web users to the nearest healthy region" with nothing at the edge, Traffic Manager can still do it more cheaply — but most modern global web apps want what Front Door adds. And they are not mutually exclusive: some large designs use Traffic Manager to steer between multiple Front Door profiles or across services Front Door does not cover.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where Load Balancer and Application Gateway fit
&lt;/h2&gt;

&lt;p&gt;To keep the whole family straight: Front Door and Traffic Manager are the &lt;em&gt;global&lt;/em&gt; tier — they choose which region a user lands in. Inside a region, &lt;a href="https://www.campuxlearn.com/blog-azure-load-balancer-explained" rel="noopener noreferrer"&gt;Azure Load Balancer&lt;/a&gt; (layer 4) and &lt;a href="https://www.campuxlearn.com/blog-front-door-vs-application-gateway" rel="noopener noreferrer"&gt;Application Gateway&lt;/a&gt; (layer 7) spread traffic across the VMs or pods in that region. A common full-stack shape is Front Door globally out front, then a regional load balancer or gateway behind it in each region. Global service picks the region; regional service picks the instance. If your decision is really between those two regional tools, see &lt;a href="https://www.campuxlearn.com/blog-load-balancer-vs-application-gateway" rel="noopener noreferrer"&gt;Load Balancer or Application Gateway&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;Front Door and Traffic Manager both route users globally, but Front Door lives &lt;em&gt;in&lt;/em&gt; the request path as a layer-7 edge service — caching, TLS offload, WAF, fast failover — while Traffic Manager lives &lt;em&gt;outside&lt;/em&gt; it, answering DNS queries and letting clients connect directly, which makes it protocol-agnostic but unable to cache or protect. "Front Door for a global web app that wants a WAF and edge caching; Traffic Manager when I just need DNS-level routing across any endpoints, including non-HTTP ones" is the call you make once you stop weighing the names against each other and start asking where in the request path the work has to happen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Questions people also ask
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is the difference between Azure Traffic Manager and Front Door?
&lt;/h3&gt;

&lt;p&gt;Traffic Manager is a DNS-based global router: it answers a DNS query with the address of a chosen endpoint, works for any protocol, then leaves the request path, so failover waits for the record's DNS TTL to expire. Front Door is a layer-7 global entry point that stays in the request path at Microsoft's edge, adding caching, TLS offload, a WAF, and near-instant failover, but only for HTTP and HTTPS.&lt;/p&gt;

&lt;h3&gt;
  
  
  Is Azure Front Door better than Traffic Manager?
&lt;/h3&gt;

&lt;p&gt;Neither is better in general; they solve different problems. Front Door is better when you need caching, TLS offload, a WAF, or sub-minute failover for a web app. Traffic Manager is better when you need cheap DNS-level routing across any endpoint, including non-HTTP ones, or across regions outside Azure.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can you use Azure Front Door and Traffic Manager together?
&lt;/h3&gt;

&lt;p&gt;Yes. Traffic Manager can sit above multiple Front Door profiles, routing DNS queries between them or providing a fallback path if Front Door itself has an outage. This layered design is uncommon, reserved for teams who need failover across Front Door instances, not the default choice for most apps.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why does Traffic Manager fail over slower than Front Door?
&lt;/h3&gt;

&lt;p&gt;Traffic Manager only answers DNS queries; it never touches the request itself. When an endpoint dies, clients keep using the last DNS answer until their resolver's cache expires at the record's TTL. Front Door sits in the request path and can route the very next request away from a dead backend, so its failover runs in seconds, not minutes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Is Traffic Manager cheaper than Front Door?
&lt;/h3&gt;

&lt;p&gt;Yes, generally. Traffic Manager only answers DNS queries and bills for that, with no edge compute, caching, or WAF involved. Front Door does real work at the edge, so it costs more. Pick Front Door for what it adds, not because it is the newer name, or you will pay for capability you never use.&lt;/p&gt;

&lt;h3&gt;
  
  
  Does Traffic Manager work with non-HTTP traffic?
&lt;/h3&gt;

&lt;p&gt;Yes. Traffic Manager only ever hands out a DNS answer, so it routes anything reachable by a DNS name: VMs, databases, on-premises endpoints, and non-Azure services, not just web traffic. Front Door is restricted to HTTP and HTTPS, because it has to actually understand the request to do its edge work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Further reading — the Microsoft docs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/frontdoor/front-door-overview" rel="noopener noreferrer"&gt;Azure Front Door overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/traffic-manager/traffic-manager-overview" rel="noopener noreferrer"&gt;Azure Traffic Manager overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/frontdoor/front-door-traffic-acceleration" rel="noopener noreferrer"&gt;Front Door traffic acceleration (anycast, split TCP)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;This article was originally published on &lt;a href="https://www.campuxlearn.com/blog-front-door-vs-traffic-manager" rel="noopener noreferrer"&gt;CAMPUX&lt;/a&gt;, a free Azure cloud-engineering bootcamp.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>azure</category>
      <category>cloud</category>
      <category>networking</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Azure RBAC: Owner vs Contributor vs Reader (and when to use each)</title>
      <dc:creator>Victor</dc:creator>
      <pubDate>Mon, 24 Aug 2026 13:55:18 +0000</pubDate>
      <link>https://dev.to/kloudcaptain/azure-rbac-owner-vs-contributor-vs-reader-and-when-to-use-each-8b9</link>
      <guid>https://dev.to/kloudcaptain/azure-rbac-owner-vs-contributor-vs-reader-and-when-to-use-each-8b9</guid>
      <description>&lt;p&gt;There are hundreds of built-in Azure roles, but three cover most of what you do — and the difference between two of them is the single most common access mistake in the cloud. Here is the model, and the trap.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Azure Owner vs Contributor: an Owner has full access including the right to grant access and assign roles to other people, while a Contributor can create, manage, and delete every resource except assigning roles or changing who has access. That single capability — role assignment — is the only difference between the two.&lt;/strong&gt; Everything below is that idea, drawn out.&lt;/p&gt;

&lt;p&gt;Azure role-based access control (RBAC) is how you answer "who can do what, where." It sounds like it should require a spreadsheet, but the everyday reality runs on three fundamental roles: &lt;strong&gt;Owner&lt;/strong&gt;, &lt;strong&gt;Contributor&lt;/strong&gt;, and &lt;strong&gt;Reader&lt;/strong&gt;. Learn exactly what separates them and you can grant access confidently — and stop handing out Owner because you were not sure.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The short answer:&lt;/strong&gt; Contributor can do everything Owner can — create, change, and delete every resource in scope — &lt;strong&gt;except one thing: assign roles to other people&lt;/strong&gt;. That single capability is the only difference. Reader can view everything and change nothing.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The three roles, in Microsoft's own words
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;What it grants&lt;/th&gt;
&lt;th&gt;Can assign roles?&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Owner&lt;/td&gt;
&lt;td&gt;Full access to manage all resources&lt;/td&gt;
&lt;td&gt;Yes — and can manage others' access&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Contributor&lt;/td&gt;
&lt;td&gt;Full access to manage all resources&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reader&lt;/td&gt;
&lt;td&gt;View all resources; make no changes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;User Access Administrator&lt;/td&gt;
&lt;td&gt;Manage &lt;em&gt;access&lt;/em&gt; only — assign roles, but not the resources themselves&lt;/td&gt;
&lt;td&gt;Yes — access only&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Microsoft's definitions are precise. Owner &lt;em&gt;"grants full access to manage all resources, including the ability to assign roles in Azure RBAC."&lt;/em&gt; Contributor &lt;em&gt;"grants full access to manage all resources, but does not allow you to assign roles."&lt;/em&gt; Reader lets you &lt;em&gt;"view all resources, but does not allow you to make any changes."&lt;/em&gt; Two of those descriptions are almost identical — and that near-identical pair is where the trap lives.&lt;/p&gt;

&lt;p&gt;The three built-in roles nest: Owner ⊃ Contributor ⊃ Reader. Reader can look; Contributor can also create and change resources but cannot hand out access; Owner can do everything Contributor can and also grant access to others. Give the innermost role that still lets the person do their job.&lt;/p&gt;

&lt;h2&gt;
  
  
  The one difference that matters
&lt;/h2&gt;

&lt;p&gt;Owner and Contributor can both do essentially everything to the &lt;em&gt;resources&lt;/em&gt; — create, change, delete VMs, databases, networks, all of it. The single distinction is &lt;strong&gt;access management&lt;/strong&gt;. Owner can grant and revoke other people's access; Contributor cannot. Contributor can build the entire environment but cannot hand out a single role.&lt;/p&gt;

&lt;p&gt;That gap is the whole point, and it is the security control people accidentally throw away. If a team needs to deploy and manage workloads, they need &lt;strong&gt;Contributor&lt;/strong&gt; — not Owner. Giving them Owner "to be safe" hands them the power to grant themselves and anyone else more access, quietly, forever. The instinct that Owner is the helpful, generous choice is exactly backwards: Owner is the role you give almost no one.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Contributor builds everything and grants nothing. That gap is a feature, not a limitation.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;The role for "manage access, nothing else":&lt;/strong&gt; What if someone genuinely needs to manage access but should not touch the resources? That is a specific built-in role — &lt;em&gt;User Access Administrator&lt;/em&gt; — which grants role assignment and nothing more. Splitting "who can change things" from "who can grant access" is how mature organizations avoid Owner sprawl. If your only tool is Owner, you cannot make that split.&lt;/p&gt;

&lt;h2&gt;
  
  
  Scope: where the role applies
&lt;/h2&gt;

&lt;p&gt;A role is only half of a role assignment; the other half is &lt;strong&gt;scope&lt;/strong&gt; — the level at which it applies. You assign a role at a management group, a subscription, a resource group, or a single resource, and it &lt;em&gt;inherits downward&lt;/em&gt;: Reader at the subscription means Reader on every resource group and resource inside it. This is why you think about scope as carefully as role. "Contributor on this one resource group" is a tight, sensible grant; "Owner on the subscription" is handing someone the keys to everything beneath it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The principle underneath: least privilege
&lt;/h2&gt;

&lt;p&gt;All of this serves one idea — give each identity the &lt;em&gt;least&lt;/em&gt; access it needs to do its job, at the &lt;em&gt;smallest&lt;/em&gt; scope that works. Concretely:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Someone who only needs to look&lt;/strong&gt; — auditors, dashboards, on-call read access — gets &lt;strong&gt;Reader&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Someone who builds and operates workloads&lt;/strong&gt; gets &lt;strong&gt;Contributor&lt;/strong&gt;, scoped to the resource groups they own.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Owner&lt;/strong&gt; is reserved for the few who must also manage access — and even then, prefer scoping it as narrowly as the job allows.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Get comfortable saying "Contributor on that resource group, not Owner on the subscription" and you are speaking the language of every security review. The three roles are simple; the discipline is choosing the smallest one that still lets the work happen — and remembering that the gap between Contributor and Owner is a wall you put up on purpose.&lt;/p&gt;

&lt;h2&gt;
  
  
  Questions people also ask
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is the difference between Azure Owner and Contributor?
&lt;/h3&gt;

&lt;p&gt;Both can create, change, and delete every resource in scope. The only difference is access management: Owner can assign roles to other people, Contributor cannot. If a person only needs to build and operate workloads, Contributor covers it — Owner adds nothing except the power to grant access.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can a Contributor assign roles in Azure?
&lt;/h3&gt;

&lt;p&gt;No. Contributor grants full access to manage resources but explicitly excludes role assignment. To hand out access to others, an identity needs Owner, User Access Administrator, or the newer Role Based Access Control Administrator role instead.&lt;/p&gt;

&lt;h3&gt;
  
  
  What can a Reader do in Azure?
&lt;/h3&gt;

&lt;p&gt;View. A Reader assigned at a subscription can see every resource group and resource beneath it — configuration, metadata, monitoring data — but cannot create, change, or delete anything, and cannot assign roles. It is the right fit for auditors and on-call visibility.&lt;/p&gt;

&lt;h3&gt;
  
  
  Does Owner include Contributor permissions?
&lt;/h3&gt;

&lt;p&gt;Yes. Owner is Contributor plus one thing: the ability to assign roles in Azure RBAC. There is no resource-management action Contributor can take that Owner cannot; the roles differ only in whether access management is included.&lt;/p&gt;

&lt;h3&gt;
  
  
  Do Azure RBAC roles inherit down through scope?
&lt;/h3&gt;

&lt;p&gt;Yes. Assign a role at a management group, subscription, or resource group and it applies to everything beneath that scope. Reader at the subscription means Reader on every resource group and resource inside it, which is why picking the smallest correct scope matters as much as picking the smallest correct role.&lt;/p&gt;

&lt;h2&gt;
  
  
  Further reading — the Microsoft docs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles" rel="noopener noreferrer"&gt;Azure built-in roles&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/role-based-access-control/overview" rel="noopener noreferrer"&gt;What is Azure RBAC?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/role-based-access-control/best-practices" rel="noopener noreferrer"&gt;Azure RBAC best practices&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the model. &lt;a href="https://www.campuxlearn.com/chapter-08-rbac-azure-policy" rel="noopener noreferrer"&gt;Class 8 — RBAC &amp;amp; Azure Policy&lt;/a&gt; takes you hands-on: assign roles at the right scope, watch them inherit down, and pair RBAC with policy so the wrong thing is not just discouraged but denied.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This article was originally published on &lt;a href="https://www.campuxlearn.com/blog-rbac-owner-contributor-reader" rel="noopener noreferrer"&gt;CAMPUX&lt;/a&gt;, a free Azure cloud-engineering bootcamp.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>azure</category>
      <category>cloud</category>
      <category>security</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
