Skip to content
By digital identity

Identity Management in Cloud Computing

Cloud identity management decides who can reach which resource, when, and how. A practical look at IAM and CIAM in the cloud era.

Identity Management in Cloud Computing, by Deepak Gupta on guptadeepak.com

Identity is the new perimeter. When applications, data, and users all live outside the office network, the only meaningful boundary left is the question of who is allowed to do what. Identity and access management is how you answer that question, and in a cloud-first world it stops being an IT chore and becomes a foundation.

What identity management means in the cloud

Identity management is the set of policies, processes, and tools that govern digital identities and what each identity is allowed to do. In a cloud context it splits into two related but distinct disciplines:

  • IAM (Identity and Access Management). Governs employees, contractors, and machines accessing internal systems and cloud infrastructure.
  • CIAM (Customer Identity and Access Management). Governs end users signing up for and using your product.

The two share primitives but differ in scale, user experience, and threat model. IAM optimises for least privilege and audit. CIAM optimises for low friction at sign-up while still defending against fraud.

Why cloud changed the calculation

On-premise IAM assumed a network boundary. Once inside the firewall you were largely trusted. The cloud era erased that boundary:

  • Workloads run across multiple providers and regions.
  • Users sign in from any device, anywhere, at any hour.
  • Machine identities (service accounts, workload tokens, API keys) now outnumber human identities by orders of magnitude.
  • SaaS sprawl means every employee may touch dozens of separate identity stores.

Each of those facts breaks an assumption the old model rested on. A modern programme treats every request as untrusted until identity, device, and context all check out.

The components of a credible cloud identity stack

  • A central identity provider. One source of truth for who exists. Single sign-on against this provider, not against each app.
  • Strong authentication. MFA on every account, passkeys or hardware keys for high-risk roles, risk-based step-up for everyone else.
  • Lifecycle automation. Joiner, mover, leaver flows tied to HR systems. Access disappears the day someone leaves.
  • Fine-grained authorisation. RBAC at minimum, ABAC or relationship-based access for richer rules.
  • Privileged access management. Just-in-time elevation for admins, with full session recording.
  • Workload identity. Short-lived tokens for services, never long-lived API keys committed to a repo.
  • Continuous monitoring. Behavioural analytics that flag impossible travel, anomalous data access, and privilege escalation in real time.

The CIAM side, briefly

For customer-facing apps the goals shift. You want sign-up to feel effortless, social or passkey login to work on first try, and progressive profiling to gather data over time instead of in one painful form. Behind the scenes you still need fraud controls, breached-password detection, regional data residency, and consent management for GDPR, CCPA, and the dozens of laws that have followed them.

What goes wrong

The failures are almost always operational, not technical:

  • Long-lived service-account keys checked into source code.
  • Admin access granted "temporarily" and never revoked.
  • MFA exempted for executives, who then get phished.
  • Shadow SaaS purchased on credit cards, never enrolled in SSO.
  • Off-boarded employees retaining access to one obscure system for years.

Where to start

If you are building from scratch: pick an identity provider, mandate SSO for every new SaaS purchase, enforce MFA from day one, and bake short-lived workload credentials into your platform. If you are retrofitting: start with the joiner-mover-leaver flow, then the admin accounts, then the long tail.

Identity is unglamorous work and it never finishes. It is also the highest-impact security investment any cloud-native company makes.

Get the newsletter

New writing on identity, AI security, and building software, delivered when it ships. No tracking pixels, no funnels, unsubscribe with one click.