Group
In identity and access management, a group is a named collection of users (and sometimes other groups) that lets administrators manage many identities as a single unit. Instead of assigning permissions or settings to each person individually, an administrator can assign them once to the group and have every member inherit them. This makes granting and removing access easier as people join, move within, or leave an organization.
A group is a directory or identity-store construct that aggregates principals (typically user accounts, and in many implementations nested groups or service identities) under a single addressable object, commonly identified by a name and unique identifier. Groups are widely used as a subject-grouping mechanism to simplify access assignment: in RBAC-oriented deployments they are often mapped to or used to convey roles and entitlements, and their membership may be emitted as claims (for example in a SAML assertion or an OIDC/JWT token) for consumption by a relying party or policy decision point. The precise semantics, supported nesting, membership resolution, and whether a group grants authorization directly or only serves as an attribute for downstream policy evaluation vary by directory technology (for example LDAP-based directories) and vendor. Note that a group is a mechanism for organizing subjects and does not itself perform authentication; how group membership influences authorization depends on the enforcement model and configuration. Evidence in this packet defines 'group' only in general and mathematical senses, so IAM-specific behavioral details here reflect standard practitioner usage rather than the cited sources.
Why it matters
Groups are one of the most widely used mechanisms for making access management scalable. Assigning permissions to individual users one at a time does not scale in an organization of any meaningful size, and it produces inconsistent, error-prone access states as people are hired, transferred, and offboarded. By collecting principals under a single addressable object, a group lets an administrator assign an entitlement once and have every member inherit it, and it lets that assignment be revoked cleanly by changing membership rather than hunting through per-user grants. This directly supports joiner-mover-leaver processes and reduces the accumulation of orphaned or excessive privileges over time.
Because groups are so convenient, they are also a common source of access risk when their semantics are misunderstood. A group is a subject-grouping construct, not an authentication mechanism, and whether membership actually grants authorization depends entirely on the enforcement model and configuration downstream. In many deployments group membership is emitted as a claim in a SAML assertion or an OIDC/JWT token and then interpreted by a relying party or policy decision point, which means the same group can convey different effective access depending on how each consuming application maps it. Nested groups and inconsistent membership resolution across directory technologies can make the real reach of a group difficult to reason about, which is why access reviews and certification campaigns frequently focus on group membership and on the entitlements groups confer.
The practical consequence for governance is that groups sit at the boundary between identity administration and runtime enforcement, and treating them as if they were self-contained roles can obscure who can actually do what. Careful naming, ownership, and periodic review of group membership are typically necessary to keep the convenience of groups from turning into unaccounted-for privilege sprawl.
Who it's relevant to
Inside Group
Common questions
Answers to the questions practitioners most commonly ask about Group.
