core Estimated learning time: 6 h

5.1 Identity and access management

You can grant a person or a service exactly the permissions it needs and no more.

Before:04. Networking in the CloudUnlocks:06. Containers & Kubernetes

The same thing, three names

One idea, sold under a different brand by each provider. Learn it once and you can read any job advertisement.

On AWS
IAM + IAM Identity Center
On Azure
Microsoft Entra ID + Azure RBAC
On Google Cloud
Cloud IAM

Identity is the control plane of the whole cloud: every action is an API call, every call is authorised against a policy, and this topic teaches writing those policies to grant exactly what is needed. Roles for machines replace long-lived keys; least privilege starts from deny. It opens the security module because misused identity is behind most cloud compromises. The skill that pays daily is reading a permission denial correctly — fixing the right thing instead of widening a policy until the error goes away, which is how over-broad roles are born.

Work through these

  • Identities, groups, roles and policies

    Identities are who is acting, groups gather them, roles are sets of permissions, and policies are the documents that grant them. These four words are used loosely in conversation and precisely in the console, and this item pins them down.

  • Least privilege in practice; starting from deny

    Least privilege means starting from nothing and adding only what is needed, which is harder than starting broad and trimming, and far more effective. The trimming version almost never happens.

  • Roles for machines instead of long-lived keys

    Machines should assume a role rather than hold a long-lived key, because a role's credentials expire on their own and a stored key does not. This is the single largest improvement most accounts can make.

  • Reading a permission denial and fixing the right thing

    A permission denial names what was refused, and the fix is often a different resource or condition than the one you assumed. Reading the message properly stops the habit of widening permissions until the error goes away.

Sign in to keep your progress.

Free resources

Links last checked 29 Aug 2026.

Stuck here?

Ask a mentor. A real person answers, and they can see exactly which topic you're on. Usually within a couple of working days.

Checking your session…

Topics shown in module order.