Action
In identity and access management, an 'action' typically refers to the specific operation a user or system wants to perform on a resource, such as reading a file, editing a record, or deleting an account. When someone requests access, the system evaluates whether that particular action is permitted for that requester on that resource. The action is one part of an access decision, alongside who is requesting and what they are trying to reach.
The evidence packet provided contains no sources relevant to the IAM sense of 'Action' (the referenced sources describe the Action retail discounter and various action films/media), so an authoritative technical definition cannot be grounded in the supplied evidence. In general IAM usage, an action denotes the operation component of an authorization request, commonly modeled as one element of a subject-action-resource-context tuple evaluated by a policy decision point (PDP) against an access control policy. In policy-based and attribute-based access control (PBAC/ABAC), actions are frequently expressed as verbs (for example read, write, delete) and matched against policy rules; the precise representation, granularity, and vocabulary of actions depend on the policy model, standard profile, and vendor implementation. Note: the specifics above are general IAM background and are not derived from the provided sources, which are out of scope for this term.
Why it matters
The action is one of the core inputs to any authorization decision, and getting it right determines whether access control is meaningful or merely decorative. A system that authenticates a user correctly but fails to distinguish between reading a record and deleting it cannot enforce least privilege in any practical sense. Precise action modeling is what allows policies to express the difference between a support agent who may view an account and an administrator who may close one, even when both are operating on the same resource.
Because the action sits alongside the subject, the resource, and contextual attributes in an access request, imprecise or overly coarse action definitions tend to push deployments toward broad, hard-to-audit grants. When actions are lumped together, segregation of duties becomes difficult to certify and access reviews lose granularity, since reviewers cannot easily see which specific operations a given grant actually permits. Fine-grained, well-named actions, by contrast, make policies more expressive and access decisions more auditable.
The way actions are represented is not standardized across the field. Vocabulary, granularity, and matching semantics vary by policy model, standard profile, and vendor implementation, so an 'action' in one system may not map cleanly to an 'action' in another. This variability matters most during integration and migration, where mismatched action taxonomies can silently widen or narrow effective permissions.
Who it's relevant to
Inside Action
Common questions
Answers to the questions practitioners most commonly ask about Action.
