Access Policy
An access policy is a set of rules that defines which users can access specific resources, under what conditions, and what actions they may perform. It is the mechanism organizations use to ensure that only authorized people reach the systems and data they are permitted to use, reducing the risk of improper access.
An access policy is a declarative set of rules that governs authorization decisions, determining which principals (users, groups, roles, or services) may perform which actions on which resources, and under what conditions. In attribute-based approaches, access rights are granted by combining attributes together through policy, as described in NIST's access control policy guidance; access policies may also be expressed within other models such as RBAC or PBAC depending on deployment. Policies are typically evaluated at runtime by an authorization engine and, in some platforms (for example AWS IAM), are authored as artifacts attached to identities or resources. Access policies address authorization only and are distinct from authentication, which verifies who the principal is; the specific structure, syntax, and evaluation semantics vary by vendor and deployment context.
Why it matters
Access policies are the operational expression of the principle that only authorized principals should reach the systems and data they are permitted to use. Without a clearly defined and enforced set of rules governing which users can access which resources, under what conditions, and what actions they may perform, organizations lose the ability to constrain improper access. As the University of North Carolina's access control guidance frames it, access controls protect information by only allowing authorized people to access systems, thereby minimizing organizational risk.
Because access policies address authorization rather than authentication, they determine what a verified principal may do, not who that principal is. This distinction matters in practice: a strong authentication posture does not by itself prevent over-privileged access, and conversely, well-scoped policies limit the blast radius when credentials are compromised. Policies that combine attributes, roles, or other conditions allow organizations to express least-privilege intent in a form that can be evaluated consistently rather than relying on ad hoc, manually managed permissions.
The practical stakes rise as access policies scale across many identities and resources. In platforms such as AWS IAM, policies are authored as discrete artifacts attached to identities or resources, which means policy sprawl, overly broad grants, and inconsistent conditions become governance concerns in their own right. Poorly scoped or unreviewed policies can silently accumulate excess privilege, making disciplined authoring, review, and enforcement essential to keeping authorization aligned with what each principal actually needs.
Who it's relevant to
Inside Access Policy
Common questions
Answers to the questions practitioners most commonly ask about Access Policy.
