Azure portal

What it is

The Azure portal is the web-based GUI (portal.azure.com) for managing Azure. It’s one of several front doors to the management plane, alongside the CLI, PowerShell, and REST/ARM.

Why it exists

Not everyone works in a terminal. The portal gives a visual, point-and-click way to create, browse, and manage resources — ideal for learning, inspection, and one-off tasks. Behind the scenes it makes the same ARM REST calls the CLI does.

Key ideas

  • Home/dashboard — customizable landing page with tiles, pinned resources, and observability widgets.
  • Cloud Shell — an in-browser shell (cloud-shell) available from the portal toolbar.
  • Search bar — global search across all subscriptions and resources.
  • Activity log access and quick navigation to monitors/alerts.
  • Trusts the same RBAC authorizations as every other tool.

How it fits (diagram)

azure-portal - Microsoft diagram

Diagrams courtesy of Microsoft Learn / Azure docs: azure/portal/azure-portal-overview

Exam notes

  • The portal is a client, not a service: it’s a convenience over ARM.
  • Dashboards and pinned tiles are commonly tested portal features.
  • You can audit who did what via the Activity log regardless of which tool made the change.

azure-cli · cloud-shell · arm · subscription

📘 Source: Microsoft Learn — Azure Portal